123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317 |
- package com.ruoyi.rc.domain;
- import java.util.Date;
- import com.fasterxml.jackson.annotation.JsonFormat;
- 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;
- /**
- * 进度对象 t_progress
- *
- * @author ruoyi
- * @date 2024-07-26
- */
- public class TProgress extends BaseEntity
- {
- private static final long serialVersionUID = 1L;
- /** id */
- private Long id;
- /** 问卷id */
- @Excel(name = "问卷id")
- private Long questionnaireId;
- /** 章节 */
- @Excel(name = "章节")
- private String chapName;
- /** 细分章节 */
- @Excel(name = "细分章节")
- private String subChapName;
- /** 二级细分章节 */
- @Excel(name = "二级细分章节")
- private String secSubChapName;
- /** 内容 */
- @Excel(name = "内容")
- private String content;
- /** 负责人 */
- @Excel(name = "负责人")
- private Long personInCharge;
- /** 支持人 */
- @Excel(name = "支持人")
- private Long supporter;
- /** 开始日期 */
- @JsonFormat(pattern = "yyyy-MM-dd")
- @Excel(name = "开始日期", width = 30, dateFormat = "yyyy-MM-dd")
- private Date startDate;
- /** 目标日期 */
- @JsonFormat(pattern = "yyyy-MM-dd")
- @Excel(name = "目标日期", width = 30, dateFormat = "yyyy-MM-dd")
- private Date targetDate;
- /** 实际完成日期 */
- @JsonFormat(pattern = "yyyy-MM-dd")
- @Excel(name = "实际完成日期", width = 30, dateFormat = "yyyy-MM-dd")
- private Date finishDate;
- /** 准备情况 */
- @Excel(name = "准备情况")
- private String preparation;
- /** 进度描述 */
- @Excel(name = "进度描述")
- private String progress;
- /** 审批状态 */
- @Excel(name = "审批状态")
- private String applyStatus;
- /** 备注 */
- @Excel(name = "备注")
- private String remarks;
- /** 装置id */
- @Excel(name = "装置id")
- private String deptId;
- /** 审计记录id */
- @Excel(name = "审计记录id")
- private Long auditId;
- /** 装置 */
- @Excel(name = "装置")
- private String deptName;
- private String personInChargeName;
- private String supporterName;
- private String code;
- private String name;
- public String getPersonInChargeName() {
- return personInChargeName;
- }
- public void setPersonInChargeName(String personInChargeName) {
- this.personInChargeName = personInChargeName;
- }
- public String getSupporterName() {
- return supporterName;
- }
- public void setSupporterName(String supporterName) {
- this.supporterName = supporterName;
- }
- public String getCode() {
- return code;
- }
- public void setCode(String code) {
- this.code = code;
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public String getDeptName() {
- return deptName;
- }
- public void setDeptName(String deptName) {
- this.deptName = deptName;
- }
- public void setId(Long id)
- {
- this.id = id;
- }
- public Long getId()
- {
- return id;
- }
- public void setQuestionnaireId(Long questionnaireId)
- {
- this.questionnaireId = questionnaireId;
- }
- public Long getQuestionnaireId()
- {
- return questionnaireId;
- }
- public void setChapName(String chapName)
- {
- this.chapName = chapName;
- }
- public String getChapName()
- {
- return chapName;
- }
- public void setSubChapName(String subChapName)
- {
- this.subChapName = subChapName;
- }
- public String getSubChapName()
- {
- return subChapName;
- }
- public void setSecSubChapName(String secSubChapName)
- {
- this.secSubChapName = secSubChapName;
- }
- public String getSecSubChapName()
- {
- return secSubChapName;
- }
- public void setContent(String content)
- {
- this.content = content;
- }
- public String getContent()
- {
- return content;
- }
- public void setPersonInCharge(Long personInCharge)
- {
- this.personInCharge = personInCharge;
- }
- public Long getPersonInCharge()
- {
- return personInCharge;
- }
- public void setSupporter(Long supporter)
- {
- this.supporter = supporter;
- }
- public Long getSupporter()
- {
- return supporter;
- }
- public void setStartDate(Date startDate)
- {
- this.startDate = startDate;
- }
- public Date getStartDate()
- {
- return startDate;
- }
- public void setTargetDate(Date targetDate)
- {
- this.targetDate = targetDate;
- }
- public Date getTargetDate()
- {
- return targetDate;
- }
- public void setFinishDate(Date finishDate)
- {
- this.finishDate = finishDate;
- }
- public Date getFinishDate()
- {
- return finishDate;
- }
- public void setPreparation(String preparation)
- {
- this.preparation = preparation;
- }
- public String getPreparation()
- {
- return preparation;
- }
- public void setProgress(String progress)
- {
- this.progress = progress;
- }
- public String getProgress()
- {
- return progress;
- }
- public void setApplyStatus(String applyStatus)
- {
- this.applyStatus = applyStatus;
- }
- public String getApplyStatus()
- {
- return applyStatus;
- }
- public void setRemarks(String remarks)
- {
- this.remarks = remarks;
- }
- public String getRemarks()
- {
- return remarks;
- }
- public void setDeptId(String deptId)
- {
- this.deptId = deptId;
- }
- public String getDeptId()
- {
- return deptId;
- }
- public void setAuditId(Long auditId)
- {
- this.auditId = auditId;
- }
- public Long getAuditId()
- {
- return auditId;
- }
- @Override
- public String toString() {
- return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
- .append("id", getId())
- .append("questionnaireId", getQuestionnaireId())
- .append("chapName", getChapName())
- .append("subChapName", getSubChapName())
- .append("secSubChapName", getSecSubChapName())
- .append("content", getContent())
- .append("personInCharge", getPersonInCharge())
- .append("supporter", getSupporter())
- .append("startDate", getStartDate())
- .append("targetDate", getTargetDate())
- .append("finishDate", getFinishDate())
- .append("preparation", getPreparation())
- .append("progress", getProgress())
- .append("applyStatus", getApplyStatus())
- .append("remarks", getRemarks())
- .append("deptId", getDeptId())
- .append("auditId", getAuditId())
- .toString();
- }
- }
|