| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- package cn.com.lzt.attendancewarnmsg.dto;
- /**
- * 项目维度统计考勤预警消息
- * @author hualong.zhao
- *
- */
- public class ProjectAbnormalDetailDto {
- String pid;
- String msgtype;
- Integer errorcount;
- Integer totalcount;
- Integer totalpercent;
- String ymdDate;
- public String getPid() {
- return pid;
- }
- public void setPid(String pid) {
- this.pid = pid;
- }
- public String getMsgtype() {
- return msgtype;
- }
- public void setMsgtype(String msgtype) {
- this.msgtype = msgtype;
- }
- public Integer getErrorcount() {
- return errorcount;
- }
- public void setErrorcount(Integer errorcount) {
- this.errorcount = errorcount;
- }
- public Integer getTotalcount() {
- return totalcount;
- }
- public void setTotalcount(Integer totalcount) {
- this.totalcount = totalcount;
- }
- public String getYmdDate() {
- return ymdDate;
- }
- public void setYmdDate(String ymdDate) {
- this.ymdDate = ymdDate;
- }
- public Integer getTotalpercent() {
- return totalpercent;
- }
- public void setTotalpercent(Integer totalpercent) {
- this.totalpercent = totalpercent;
- }
-
- }
|