KaoQinModifyEntity.java 719 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. package cn.com.lzt.report.entity;
  2. public class KaoQinModifyEntity {
  3. private String name;
  4. private int total;
  5. private int count ;
  6. private String monthyear;
  7. private String id;
  8. public String getName() {
  9. return name;
  10. }
  11. public void setName(String name) {
  12. this.name = name;
  13. }
  14. public int getTotal() {
  15. return total;
  16. }
  17. public void setTotal(int total) {
  18. this.total = total;
  19. }
  20. public int getCount() {
  21. return count;
  22. }
  23. public void setCount(int count) {
  24. this.count = count;
  25. }
  26. public String getMonthyear() {
  27. return monthyear;
  28. }
  29. public void setMonthyear(String monthyear) {
  30. this.monthyear = monthyear;
  31. }
  32. public String getId() {
  33. return id;
  34. }
  35. public void setId(String id) {
  36. this.id = id;
  37. }
  38. }