ProjectAbnormalDetailDto.java 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. package cn.com.lzt.attendancewarnmsg.dto;
  2. /**
  3. * 项目维度统计考勤预警消息
  4. * @author hualong.zhao
  5. *
  6. */
  7. public class ProjectAbnormalDetailDto {
  8. String pid;
  9. String msgtype;
  10. Integer errorcount;
  11. Integer totalcount;
  12. Integer totalpercent;
  13. String ymdDate;
  14. public String getPid() {
  15. return pid;
  16. }
  17. public void setPid(String pid) {
  18. this.pid = pid;
  19. }
  20. public String getMsgtype() {
  21. return msgtype;
  22. }
  23. public void setMsgtype(String msgtype) {
  24. this.msgtype = msgtype;
  25. }
  26. public Integer getErrorcount() {
  27. return errorcount;
  28. }
  29. public void setErrorcount(Integer errorcount) {
  30. this.errorcount = errorcount;
  31. }
  32. public Integer getTotalcount() {
  33. return totalcount;
  34. }
  35. public void setTotalcount(Integer totalcount) {
  36. this.totalcount = totalcount;
  37. }
  38. public String getYmdDate() {
  39. return ymdDate;
  40. }
  41. public void setYmdDate(String ymdDate) {
  42. this.ymdDate = ymdDate;
  43. }
  44. public Integer getTotalpercent() {
  45. return totalpercent;
  46. }
  47. public void setTotalpercent(Integer totalpercent) {
  48. this.totalpercent = totalpercent;
  49. }
  50. }