- package org.ntlab.citrusserver.entities;
-
- public class Todo {
- String title;
- boolean check;
- int year;
- int month;
- int day;
- Integer todoId;
-
- public Todo(String t, boolean c, int y, int m, int d, Integer tid) {
- title = t;
- check = c;
- year = y;
- month = m;
- day = d;
- todoId = tid;
- }
- 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 setTodoId(Integer t) {todoId = t;}
- public Integer getTodoId() {
- return todoId;
- }
- }