YourModelClassName
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 단순 참고용 모델 클래스 | |
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