YearMonthDay.java 707 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. package cn.com.lzt.userwage.dto;
  2. public class YearMonthDay implements java.io.Serializable {
  3. /**
  4. *
  5. */
  6. private static final long serialVersionUID = -4025339245714033289L;
  7. private int year;
  8. private int month;
  9. private int day;
  10. public YearMonthDay() {
  11. super();
  12. }
  13. public YearMonthDay(int year, int month, int day) {
  14. super();
  15. this.year = year;
  16. this.month = month;
  17. this.day = day;
  18. }
  19. public int getYear() {
  20. return year;
  21. }
  22. public void setYear(int year) {
  23. this.year = year;
  24. }
  25. public int getMonth() {
  26. return month;
  27. }
  28. public void setMonth(int month) {
  29. this.month = month;
  30. }
  31. public int getDay() {
  32. return day;
  33. }
  34. public void setDay(int day) {
  35. this.day = day;
  36. }
  37. }