/** * */ package cn.com.lzt.dbquery.dto; import org.jeecgframework.poi.excel.annotation.Excel; /** * @author xzx * * 2019年7月31日 * */ public class DbQueryUserByGenderDto { /** * 项目管理处id */ private String pid; /** * 项目名称 */ @Excel(name="项目名称",width=35) private String departname; /** * 总人数 */ @Excel(name="项目在职人数",width=35,isStatistics=true) private int total; @Excel(name="男",width=35,isStatistics=true) private int maleCount; @Excel(name="女",width=35,isStatistics=true) private int femaleCount; // 入职月份 private String inMonth; public String getInMonth() { return inMonth; } public void setInMonth(String inMonth) { this.inMonth = inMonth; } public String getPid() { return pid; } public void setPid(String pid) { this.pid = pid; } public String getDepartname() { return departname; } public void setDepartname(String departname) { this.departname = departname; } public int getTotal() { return total; } public void setTotal(int total) { this.total = total; } public int getMaleCount() { return maleCount; } public void setMaleCount(int maleCount) { this.maleCount = maleCount; } public int getFemaleCount() { return femaleCount; } public void setFemaleCount(int femaleCount) { this.femaleCount = femaleCount; } }