Skip to content

Instantly share code, notes, and snippets.

@JHLBLUE
Created November 13, 2017 07:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JHLBLUE/60fbeee94347bc2659f0e4e34f265252 to your computer and use it in GitHub Desktop.
Save JHLBLUE/60fbeee94347bc2659f0e4e34f265252 to your computer and use it in GitHub Desktop.
YourModelClassName
// 단순 참고용 모델 클래스
class YourModelClassName {
private String name;
private Date date;
private boolean istrue;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Date getDate() {
return date;
}
public void setDate(Date date) {
this.date = date;
}
public boolean isIstrue() {
return istrue;
}
public void setIstrue(boolean istrue) {
this.istrue = istrue;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment