Skip to content

Instantly share code, notes, and snippets.

@jen6
Created July 13, 2015 14:06
Show Gist options
  • Save jen6/148d0557521e4025fbbf to your computer and use it in GitHub Desktop.
Save jen6/148d0557521e4025fbbf to your computer and use it in GitHub Desktop.
//글쓰기용
public class BusPostSetter {
public BusPostSetter(){}
public BusPostSetter(String Title, String Content, int Want) {}
public boolean post() {}
}
class BusList{
int Id, Want;
String Title, Content;
}
class BusListGetter {
public BusListGetter(){}
public BusList[] Get(int idx){}
}
class Bus{
int Id, WriterId, Want;
String Writer, Title, Content;
}
class BusGetter {
public BusGetter(){}
public Bus Get(int Id){}
}
class UserProfile {
String UserName, Best, Can, Intro, Image; //이름 잘하는거 할수있는거 자기소개 프로필사진
int UserSubject, UserGrade, UserClass, UserNum; //UserSubject 1234순서대로 정통 웹 멀티 테경
}
class UserProfileGetter{
public UserProfileGetter(){}
public UserProfile Get(int Id){}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment