123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188 |
- package com.ruoyi.powerdistribution.domain;
- import lombok.Data;
- import org.apache.commons.lang3.builder.ToStringBuilder;
- import org.apache.commons.lang3.builder.ToStringStyle;
- import com.ruoyi.common.annotation.Excel;
- import com.ruoyi.common.core.domain.BaseEntity;
- /**
- * 履职日统计对象 pdm_report_appointment_day
- *
- * @author ruoyi
- * @date 2024-11-28
- */
- @Data
- public class PdmReportAppointmentDay extends BaseEntity
- {
- private static final long serialVersionUID = 1L;
- /** $column.columnComment */
- private Long id;
- /** 单位 */
- @Excel(name = "单位")
- private String company;
- /** 日期 */
- @Excel(name = "日期")
- private String reportDate;
- /** 领导督察次数 */
- @Excel(name = "领导督察次数")
- private Integer bossSum;
- /** 管理督察次数 */
- @Excel(name = "管理督察次数")
- private Integer manageSum;
- /** 未履职数量 */
- @Excel(name = "未履职数量")
- private Integer absentSum;
- /** 未履职明细 */
- @Excel(name = "未履职明细")
- private String absentDetail;
- /** 履职不到位数量 */
- @Excel(name = "履职不到位数量")
- private Integer absentBadSum;
- /** 履职不到位明细 */
- @Excel(name = "履职不到位明细")
- private String absentBadDetail;
- private Long no;
- /** 督察现场数量 三级 */
- @Excel(name = "督察现场数量 三级")
- private Integer checkNum3;
- /** 督察现场数量 四级 */
- @Excel(name = "督察现场数量 四级")
- private Integer checkNum4;
- /** 督察现场数量 五级 */
- @Excel(name = "督察现场数量 五级")
- private Integer checkNum5;
- /** 问题数量 */
- @Excel(name = "问题数量")
- private Integer problemSum;
- /** 市公司查处问题数 */
- @Excel(name = "市公司查处问题数")
- private Integer cityCheckSum;
- /**
- * 查询-开始时间
- */
- private String startDate;
- /**
- * 查询-结束时间
- */
- private String endDate;
- public void setId(Long id)
- {
- this.id = id;
- }
- public Long getId()
- {
- return id;
- }
- public void setCompany(String company)
- {
- this.company = company;
- }
- public String getCompany()
- {
- return company;
- }
- public void setReportDate(String reportDate)
- {
- this.reportDate = reportDate;
- }
- public String getReportDate()
- {
- return reportDate;
- }
- public void setBossSum(Integer bossSum)
- {
- this.bossSum = bossSum;
- }
- public Integer getBossSum()
- {
- return bossSum;
- }
- public void setManageSum(Integer manageSum)
- {
- this.manageSum = manageSum;
- }
- public Integer getManageSum()
- {
- return manageSum;
- }
- public void setAbsentSum(Integer absentSum)
- {
- this.absentSum = absentSum;
- }
- public Integer getAbsentSum()
- {
- return absentSum;
- }
- public void setAbsentDetail(String absentDetail)
- {
- this.absentDetail = absentDetail;
- }
- public String getAbsentDetail()
- {
- return absentDetail;
- }
- public void setAbsentBadSum(Integer absentBadSum)
- {
- this.absentBadSum = absentBadSum;
- }
- public Integer getAbsentBadSum()
- {
- return absentBadSum;
- }
- public void setAbsentBadDetail(String absentBadDetail)
- {
- this.absentBadDetail = absentBadDetail;
- }
- public String getAbsentBadDetail()
- {
- return absentBadDetail;
- }
- @Override
- public String toString() {
- return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
- .append("id", getId())
- .append("company", getCompany())
- .append("reportDate", getReportDate())
- .append("bossSum", getBossSum())
- .append("manageSum", getManageSum())
- .append("absentSum", getAbsentSum())
- .append("absentDetail", getAbsentDetail())
- .append("absentBadSum", getAbsentBadSum())
- .append("absentBadDetail", getAbsentBadDetail())
- .append("createBy", getCreateBy())
- .append("createTime", getCreateTime())
- .append("updateBy", getUpdateBy())
- .append("updateTime", getUpdateTime())
- .toString();
- }
- }
|