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; } }