|
|
|
@ -1,5 +1,6 @@
@@ -1,5 +1,6 @@
|
|
|
|
|
package com.ruoyi.system.domain; |
|
|
|
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat; // 添加此导入
|
|
|
|
|
import java.util.Date; // 添加 Date 类的导入
|
|
|
|
|
import org.apache.commons.lang3.builder.ToStringBuilder; |
|
|
|
|
import org.apache.commons.lang3.builder.ToStringStyle; |
|
|
|
@ -171,5 +172,83 @@ public class RollingPlan extends BaseEntity
@@ -171,5 +172,83 @@ public class RollingPlan extends BaseEntity
|
|
|
|
|
@Excel(name = "审核备注") |
|
|
|
|
private String auditRemark; |
|
|
|
|
|
|
|
|
|
// getter/setter 方法略
|
|
|
|
|
public String getAuditStatus() |
|
|
|
|
{ |
|
|
|
|
return auditStatus; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setAuditStatus(String auditStatus) |
|
|
|
|
{ |
|
|
|
|
this.auditStatus = auditStatus; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public String getAuditBy() |
|
|
|
|
{ |
|
|
|
|
return auditBy; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setAuditBy(String auditBy) |
|
|
|
|
{ |
|
|
|
|
this.auditBy = auditBy; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Long getPlanId() |
|
|
|
|
{ |
|
|
|
|
return planId; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setPlanId(Long planId) |
|
|
|
|
{ |
|
|
|
|
this.planId = planId; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public String getPlanNumber() |
|
|
|
|
{ |
|
|
|
|
return planNumber; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setPlanNumber(String planNumber) |
|
|
|
|
{ |
|
|
|
|
this.planNumber = planNumber; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public String getMachineCode() |
|
|
|
|
{ |
|
|
|
|
return machineCode; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setMachineCode(String machineCode) |
|
|
|
|
{ |
|
|
|
|
this.machineCode = machineCode; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Integer getPlanYear() |
|
|
|
|
{ |
|
|
|
|
return planYear; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setPlanYear(Integer planYear) |
|
|
|
|
{ |
|
|
|
|
this.planYear = planYear; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public String getAuditRemark() |
|
|
|
|
{ |
|
|
|
|
return auditRemark; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setAuditRemark(String auditRemark) |
|
|
|
|
{ |
|
|
|
|
this.auditRemark = auditRemark; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Date getAuditTime() |
|
|
|
|
{ |
|
|
|
|
return auditTime; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setAuditTime(Date auditTime) |
|
|
|
|
{ |
|
|
|
|
this.auditTime = auditTime; |
|
|
|
|
} |
|
|
|
|
} |