|
@@ -8,7 +8,7 @@ import com.ruoyi.common.core.domain.BaseEntity;
|
|
|
|
|
|
/**
|
|
|
* 检修计划全流程管理对象 pdm_maintenance_process
|
|
|
- *
|
|
|
+ *
|
|
|
* @author ruoyi
|
|
|
* @date 2024-12-05
|
|
|
*/
|
|
@@ -24,6 +24,10 @@ public class PdmMaintenanceProcess extends BaseEntity
|
|
|
@Excel(name = "月计划编号")
|
|
|
private String planCode;
|
|
|
|
|
|
+ /** 周计划编号 */
|
|
|
+ //@Excel(name = "周计划编号")
|
|
|
+ private String planCodeW;
|
|
|
+
|
|
|
/** 月计划停电设备数 */
|
|
|
@Excel(name = "月计划停电设备数")
|
|
|
private Long powerOutageDevices;
|
|
@@ -84,152 +88,6 @@ public class PdmMaintenanceProcess extends BaseEntity
|
|
|
|
|
|
private String approveFileName;
|
|
|
|
|
|
- public void setId(Long id)
|
|
|
- {
|
|
|
- this.id = id;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getId()
|
|
|
- {
|
|
|
- return id;
|
|
|
- }
|
|
|
- public void setPlanCode(String planCode)
|
|
|
- {
|
|
|
- this.planCode = planCode;
|
|
|
- }
|
|
|
-
|
|
|
- public String getPlanCode()
|
|
|
- {
|
|
|
- return planCode;
|
|
|
- }
|
|
|
- public void setPowerOutageDevices(Long powerOutageDevices)
|
|
|
- {
|
|
|
- this.powerOutageDevices = powerOutageDevices;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getPowerOutageDevices()
|
|
|
- {
|
|
|
- return powerOutageDevices;
|
|
|
- }
|
|
|
- public void setPerHourHouseholdsM(Long perHourHouseholdsM)
|
|
|
- {
|
|
|
- this.perHourHouseholdsM = perHourHouseholdsM;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getPerHourHouseholdsM()
|
|
|
- {
|
|
|
- return perHourHouseholdsM;
|
|
|
- }
|
|
|
- public void setPerHourHouseholdsW(Long perHourHouseholdsW)
|
|
|
- {
|
|
|
- this.perHourHouseholdsW = perHourHouseholdsW;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getPerHourHouseholdsW()
|
|
|
- {
|
|
|
- return perHourHouseholdsW;
|
|
|
- }
|
|
|
- public void setCity(String city)
|
|
|
- {
|
|
|
- this.city = city;
|
|
|
- }
|
|
|
-
|
|
|
- public String getCity()
|
|
|
- {
|
|
|
- return city;
|
|
|
- }
|
|
|
- public void setCounty(String county)
|
|
|
- {
|
|
|
- this.county = county;
|
|
|
- }
|
|
|
-
|
|
|
- public String getCounty()
|
|
|
- {
|
|
|
- return county;
|
|
|
- }
|
|
|
- public void setStation(String station)
|
|
|
- {
|
|
|
- this.station = station;
|
|
|
- }
|
|
|
-
|
|
|
- public String getStation()
|
|
|
- {
|
|
|
- return station;
|
|
|
- }
|
|
|
- public void setLineCode(String lineCode)
|
|
|
- {
|
|
|
- this.lineCode = lineCode;
|
|
|
- }
|
|
|
-
|
|
|
- public String getLineCode()
|
|
|
- {
|
|
|
- return lineCode;
|
|
|
- }
|
|
|
- public void setLineName(String lineName)
|
|
|
- {
|
|
|
- this.lineName = lineName;
|
|
|
- }
|
|
|
-
|
|
|
- public String getLineName()
|
|
|
- {
|
|
|
- return lineName;
|
|
|
- }
|
|
|
- public void setPerHourHouseholdsArtif(Long perHourHouseholdsArtif)
|
|
|
- {
|
|
|
- this.perHourHouseholdsArtif = perHourHouseholdsArtif;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getPerHourHouseholdsArtif()
|
|
|
- {
|
|
|
- return perHourHouseholdsArtif;
|
|
|
- }
|
|
|
- public void setDeclarAgency(String declarAgency)
|
|
|
- {
|
|
|
- this.declarAgency =
|
|
|
-declarAgency;
|
|
|
- }
|
|
|
-
|
|
|
- public String getDeclarAgency()
|
|
|
- {
|
|
|
- return declarAgency;
|
|
|
- }
|
|
|
- public void setIsMaintenance(String isMaintenance)
|
|
|
- {
|
|
|
- this.isMaintenance = isMaintenance;
|
|
|
- }
|
|
|
-
|
|
|
- public String getIsMaintenance()
|
|
|
- {
|
|
|
- return isMaintenance;
|
|
|
- }
|
|
|
- public void setIsApprove(String isApprove)
|
|
|
- {
|
|
|
- this.isApprove = isApprove;
|
|
|
- }
|
|
|
-
|
|
|
- public String getIsApprove()
|
|
|
- {
|
|
|
- return isApprove;
|
|
|
- }
|
|
|
- public void setMaintenanceFilePath(String maintenanceFilePath)
|
|
|
- {
|
|
|
- this.maintenanceFilePath = maintenanceFilePath;
|
|
|
- }
|
|
|
-
|
|
|
- public String getMaintenanceFilePath()
|
|
|
- {
|
|
|
- return maintenanceFilePath;
|
|
|
- }
|
|
|
- public void setApproveFilePath(String approveFilePath)
|
|
|
- {
|
|
|
- this.approveFilePath = approveFilePath;
|
|
|
- }
|
|
|
-
|
|
|
- public String getApproveFilePath()
|
|
|
- {
|
|
|
- return approveFilePath;
|
|
|
- }
|
|
|
-
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|