package org.ntlab.citrusserver.entities;
public class Todo {
String title;
boolean check;
int year;
int month;
int day;
Integer todo_id;
public void setTitle(String t) {title = t;}
public String getTitle() {return title;}
public void setCheck(boolean c) {check = c;}
public boolean getCheck() {return check;}
public void setYear(int y) {year = y;}
public int getYear() {return year;}
public void setMonth(int m) {month = m;}
public int getMonth() {return month;}
public void setDay(int d) {day = d;}
public int getDay() {return day;}
public void setTodo_id(Integer t) {todo_id = t;}
public Integer getTodo_id() {
return todo_id;
}
}