| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- package cn.com.lzt.userwage.dto;
- public class YearMonthDay implements java.io.Serializable {
- /**
- *
- */
- private static final long serialVersionUID = -4025339245714033289L;
- private int year;
- private int month;
- private int day;
- public YearMonthDay() {
- super();
- }
- public YearMonthDay(int year, int month, int day) {
- super();
- this.year = year;
- this.month = month;
- this.day = day;
- }
- public int getYear() {
- return year;
- }
- public void setYear(int year) {
- this.year = year;
- }
- public int getMonth() {
- return month;
- }
- public void setMonth(int month) {
- this.month = month;
- }
- public int getDay() {
- return day;
- }
- public void setDay(int day) {
- this.day = day;
- }
- }
|