123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389 |
- package com.ruoyi.project.pssr.domain;
- import java.util.Date;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import com.ruoyi.framework.aspectj.lang.annotation.Excel;
- import com.ruoyi.framework.web.domain.BaseEntity;
- import org.apache.commons.lang3.builder.ToStringBuilder;
- import org.apache.commons.lang3.builder.ToStringStyle;
- /**
- * 短接对象 t_pssr_circuit
- *
- * @author ssy
- * @date 2024-09-23
- */
- public class TPssrCircuit extends BaseEntity
- {
- private static final long serialVersionUID = 1L;
- /** 唯一标识ID */
- private Long id;
- /** 内容表id */
- @Excel(name = "内容表id")
- private Long subId;
- /** 审批id */
- @Excel(name = "审批id")
- private Long approveId;
- /** 单元号 */
- @Excel(name = "单元号")
- private String unit;
- /** P&ID图号 */
- @Excel(name = "P&ID图号")
- private String pidNo;
- /** 管线号/设备 */
- @Excel(name = "管线号/设备")
- private String pipelineNo;
- /** 短接类型 */
- @Excel(name = "短接类型")
- private String circuitType;
- /** 介质 */
- @Excel(name = "介质")
- private String medium;
- /** 所在位置 */
- @Excel(name = "所在位置")
- private String position;
- /** 尺寸 */
- @Excel(name = "尺寸")
- private String circuitSize;
- /** 正确状态 */
- @Excel(name = "正确状态")
- private String rightStatus;
- /** 当前状态(连通/断开) */
- @Excel(name = "当前状态", readConverterExp = "连=通/断开")
- private String currentStatus;
- /** 确认人1 */
- @Excel(name = "确认人1")
- private String confirm1;
- /** 当前状态正确(是/否) */
- @Excel(name = "当前状态正确", readConverterExp = "是=/否")
- private String currentStatusRight;
- /** 确认人2 */
- @Excel(name = "确认人2")
- private String confirm2;
- /** 确认时间 */
- @JsonFormat(pattern = "yyyy-MM-dd" , timezone = "GMT+8")
- @Excel(name = "确认时间", width = 30, dateFormat = "yyyy-MM-dd")
- private Date confirmationDate;
- /** 删除状态 */
- private Long delFlag;
- /** 创建人 */
- @Excel(name = "创建人")
- private String createrCode;
- /** 创建时间 */
- @JsonFormat(pattern = "yyyy-MM-dd" , timezone = "GMT+8")
- @Excel(name = "创建时间", width = 30, dateFormat = "yyyy-MM-dd")
- private Date createdate;
- /** 修改人 */
- @Excel(name = "修改人")
- private String updaterCode;
- /** 修改时间 */
- @JsonFormat(pattern = "yyyy-MM-dd" , timezone = "GMT+8")
- @Excel(name = "修改时间", width = 30, dateFormat = "yyyy-MM-dd")
- private Date updatedate;
- /** 部门编号 */
- @Excel(name = "部门编号")
- private Long deptId;
-
- private String deptName;
- public String getDeptName() {
- return deptName;
- }
- public void setDeptName(String deptName) {
- this.deptName = deptName;
- }
- /** 备注 */
- @Excel(name = "备注")
- private String remarks;
- /** 审批状态 */
- @Excel(name = "审批状态")
- private Long approveStatus;
- private Long[] ids;
- private Long taskType;
- public Long[] getIds() {
- return ids;
- }
- public void setIds(Long[] ids) {
- this.ids = ids;
- }
- public Long getTaskType() {
- return taskType;
- }
- public void setId(Long id)
- {
- this.id = id;
- }
- public Long getId()
- {
- return id;
- }
- public void setSubId(Long subId)
- {
- this.subId = subId;
- }
- public Long getSubId()
- {
- return subId;
- }
- public void setApproveId(Long approveId)
- {
- this.approveId = approveId;
- }
- public Long getApproveId()
- {
- return approveId;
- }
- public void setUnit(String unit)
- {
- this.unit = unit;
- }
- public String getUnit()
- {
- return unit;
- }
- public void setPidNo(String pidNo)
- {
- this.pidNo = pidNo;
- }
- public String getPidNo()
- {
- return pidNo;
- }
- public void setPipelineNo(String pipelineNo)
- {
- this.pipelineNo = pipelineNo;
- }
- public String getPipelineNo()
- {
- return pipelineNo;
- }
- public void setCircuitType(String circuitType)
- {
- this.circuitType = circuitType;
- }
- public String getCircuitType()
- {
- return circuitType;
- }
- public void setMedium(String medium)
- {
- this.medium = medium;
- }
- public String getMedium()
- {
- return medium;
- }
- public void setPosition(String position)
- {
- this.position = position;
- }
- public String getPosition()
- {
- return position;
- }
- public void setCircuitSize(String circuitSize)
- {
- this.circuitSize = circuitSize;
- }
- public String getCircuitSize()
- {
- return circuitSize;
- }
- public void setRightStatus(String rightStatus)
- {
- this.rightStatus = rightStatus;
- }
- public String getRightStatus()
- {
- return rightStatus;
- }
- public void setCurrentStatus(String currentStatus)
- {
- this.currentStatus = currentStatus;
- }
- public String getCurrentStatus()
- {
- return currentStatus;
- }
- public void setConfirm1(String confirm1)
- {
- this.confirm1 = confirm1;
- }
- public String getConfirm1()
- {
- return confirm1;
- }
- public void setCurrentStatusRight(String currentStatusRight)
- {
- this.currentStatusRight = currentStatusRight;
- }
- public String getCurrentStatusRight()
- {
- return currentStatusRight;
- }
- public void setConfirm2(String confirm2)
- {
- this.confirm2 = confirm2;
- }
- public String getConfirm2()
- {
- return confirm2;
- }
- public void setConfirmationDate(Date confirmationDate)
- {
- this.confirmationDate = confirmationDate;
- }
- public Date getConfirmationDate()
- {
- return confirmationDate;
- }
- public void setDelFlag(Long delFlag)
- {
- this.delFlag = delFlag;
- }
- public Long getDelFlag()
- {
- return delFlag;
- }
- public void setCreaterCode(String createrCode)
- {
- this.createrCode = createrCode;
- }
- public String getCreaterCode()
- {
- return createrCode;
- }
- public void setCreatedate(Date createdate)
- {
- this.createdate = createdate;
- }
- public Date getCreatedate()
- {
- return createdate;
- }
- public void setUpdaterCode(String updaterCode)
- {
- this.updaterCode = updaterCode;
- }
- public String getUpdaterCode()
- {
- return updaterCode;
- }
- public void setUpdatedate(Date updatedate)
- {
- this.updatedate = updatedate;
- }
- public Date getUpdatedate()
- {
- return updatedate;
- }
- public void setDeptId(Long deptId)
- {
- this.deptId = deptId;
- }
- public Long getDeptId()
- {
- return deptId;
- }
- public void setRemarks(String remarks)
- {
- this.remarks = remarks;
- }
- public String getRemarks()
- {
- return remarks;
- }
- public void setApproveStatus(Long approveStatus)
- {
- this.approveStatus = approveStatus;
- }
- public Long getApproveStatus()
- {
- return approveStatus;
- }
- @Override
- public String toString() {
- return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
- .append("id", getId())
- .append("subId", getSubId())
- .append("approveId", getApproveId())
- .append("unit", getUnit())
- .append("pidNo", getPidNo())
- .append("pipelineNo", getPipelineNo())
- .append("circuitType", getCircuitType())
- .append("medium", getMedium())
- .append("position", getPosition())
- .append("circuitSize", getCircuitSize())
- .append("rightStatus", getRightStatus())
- .append("currentStatus", getCurrentStatus())
- .append("confirm1", getConfirm1())
- .append("currentStatusRight", getCurrentStatusRight())
- .append("confirm2", getConfirm2())
- .append("confirmationDate", getConfirmationDate())
- .append("delFlag", getDelFlag())
- .append("createrCode", getCreaterCode())
- .append("createdate", getCreatedate())
- .append("updaterCode", getUpdaterCode())
- .append("updatedate", getUpdatedate())
- .append("deptId", getDeptId())
- .append("remarks", getRemarks())
- .append("approveStatus", getApproveStatus())
- .toString();
- }
- }
|