|
@@ -5,6 +5,7 @@ import com.jeeplus.core.persistence.DataEntity;
|
|
|
|
|
|
public class Project extends DataEntity<Project> {
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
+ private String serialNumber;
|
|
|
private String type;//类型
|
|
|
private String demandUnit;//需求提出单位
|
|
|
private String bdzName;//变电站名称
|
|
@@ -59,7 +60,6 @@ public class Project extends DataEntity<Project> {
|
|
|
private String stayOpenArea;//柱开集中或就业地
|
|
|
private String ringNetworkCabinet;//环网柜
|
|
|
private String stationDtu;//站房dtu
|
|
|
- private String itemType;//项目类型
|
|
|
private String status;
|
|
|
private String acquisitionStatus;//领料状态
|
|
|
private String constructionStatus;//施工状态
|
|
@@ -67,6 +67,15 @@ public class Project extends DataEntity<Project> {
|
|
|
private Integer earlyMaterial;//判断项目是否可以提前发起领料
|
|
|
private Integer preConstruction;//判断项目是否可以提前施工
|
|
|
|
|
|
+ @ExcelField(title = "序号", align = 2, sort = 1)
|
|
|
+ public String getSerialNumber() {
|
|
|
+ return serialNumber;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSerialNumber(String serialNumber) {
|
|
|
+ this.serialNumber = serialNumber;
|
|
|
+ }
|
|
|
+
|
|
|
public String getStatus() {
|
|
|
return status;
|
|
|
}
|
|
@@ -99,7 +108,7 @@ public class Project extends DataEntity<Project> {
|
|
|
this.whetherCloseStatus = whetherCloseStatus;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title = "类型", align = 2, sort = 1)
|
|
|
+ @ExcelField(title = "类型", align = 2, sort = 2)
|
|
|
public String getType() {
|
|
|
return type;
|
|
|
}
|
|
@@ -108,7 +117,7 @@ public class Project extends DataEntity<Project> {
|
|
|
this.type = type;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title = "需求提出单位", align = 2, sort = 2)
|
|
|
+ @ExcelField(title = "需求提出单位", align = 2, sort = 3)
|
|
|
public String getDemandUnit() {
|
|
|
return demandUnit;
|
|
|
}
|
|
@@ -117,7 +126,7 @@ public class Project extends DataEntity<Project> {
|
|
|
this.demandUnit = demandUnit;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title = "变电站名称", align = 2, sort = 3)
|
|
|
+ @ExcelField(title = "变电站名称", align = 2, sort = 4)
|
|
|
public String getBdzName() {
|
|
|
return bdzName;
|
|
|
}
|
|
@@ -126,7 +135,7 @@ public class Project extends DataEntity<Project> {
|
|
|
this.bdzName = bdzName;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title = "线路名称", align = 2, sort = 4)
|
|
|
+ @ExcelField(title = "线路名称", align = 2, sort = 5)
|
|
|
public String getLineName() {
|
|
|
return lineName;
|
|
|
}
|
|
@@ -135,12 +144,12 @@ public class Project extends DataEntity<Project> {
|
|
|
this.lineName = lineName;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title = "项目需求名称", align = 2, sort = 5)
|
|
|
+ @ExcelField(title = "项目需求名称", align = 2, sort = 6)
|
|
|
public String getRequireName() {
|
|
|
return requireName;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title = "工程编号", align = 2, sort = 6)
|
|
|
+ @ExcelField(title = "工程编号", align = 2, sort = 7)
|
|
|
public String getProjectId() {
|
|
|
return projectId;
|
|
|
}
|
|
@@ -149,7 +158,7 @@ public class Project extends DataEntity<Project> {
|
|
|
this.projectId = projectId;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title = "项目名称", align = 2, sort = 7)
|
|
|
+ @ExcelField(title = "项目名称", align = 2, sort = 8)
|
|
|
public String getProjectName() {
|
|
|
return projectName;
|
|
|
}
|
|
@@ -158,7 +167,7 @@ public class Project extends DataEntity<Project> {
|
|
|
this.projectName = projectName;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title = "项目定义号", align = 2, sort = 8)
|
|
|
+ @ExcelField(title = "项目定义号", align = 2, sort = 9)
|
|
|
public String getProjectNumber() {
|
|
|
return projectNumber;
|
|
|
}
|
|
@@ -167,12 +176,12 @@ public class Project extends DataEntity<Project> {
|
|
|
this.projectNumber = projectNumber;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title = "项目经理角色", align = 2, sort = 9)
|
|
|
+ @ExcelField(title = "项目经理角色", align = 2, sort = 10)
|
|
|
public String getProjectManageRole() {
|
|
|
return projectManageRole;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title = "配网工程专职角色", align = 2, sort = 10)
|
|
|
+ @ExcelField(title = "配网工程专职角色", align = 2, sort = 11)
|
|
|
public String getDistributionEngineering() {
|
|
|
return distributionEngineering;
|
|
|
}
|
|
@@ -181,7 +190,7 @@ public class Project extends DataEntity<Project> {
|
|
|
this.distributionEngineering = distributionEngineering;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title = "配网物资专职角色", align = 2, sort = 11)
|
|
|
+ @ExcelField(title = "配网物资专职角色", align = 2, sort = 12)
|
|
|
public String getDistributionMaterials() {
|
|
|
return distributionMaterials;
|
|
|
}
|
|
@@ -190,7 +199,7 @@ public class Project extends DataEntity<Project> {
|
|
|
this.distributionMaterials = distributionMaterials;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title = "配网系统专职角色", align = 2, sort = 12)
|
|
|
+ @ExcelField(title = "配网系统专职角色", align = 2, sort = 13)
|
|
|
public String getDistributionSystem() {
|
|
|
return distributionSystem;
|
|
|
}
|
|
@@ -199,7 +208,7 @@ public class Project extends DataEntity<Project> {
|
|
|
this.distributionSystem = distributionSystem;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title = "配网政策处理专职角色", align = 2, sort = 13)
|
|
|
+ @ExcelField(title = "配网政策处理专职角色", align = 2, sort = 14)
|
|
|
public String getDistributionPolicy() {
|
|
|
return distributionPolicy;
|
|
|
}
|
|
@@ -208,7 +217,7 @@ public class Project extends DataEntity<Project> {
|
|
|
this.distributionPolicy = distributionPolicy;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title = "项目管理中心领导角色", align = 2, sort = 14)
|
|
|
+ @ExcelField(title = "项目管理中心领导角色", align = 2, sort = 15)
|
|
|
public String getManagementLeader() {
|
|
|
return managementLeader;
|
|
|
}
|
|
@@ -217,7 +226,7 @@ public class Project extends DataEntity<Project> {
|
|
|
this.managementLeader = managementLeader;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title = "运行单位", align = 2, sort = 15)
|
|
|
+ @ExcelField(title = "运行单位", align = 2, sort = 16)
|
|
|
public String getRunUnit() {
|
|
|
return runUnit;
|
|
|
}
|
|
@@ -226,7 +235,7 @@ public class Project extends DataEntity<Project> {
|
|
|
this.runUnit = runUnit;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title = "运行单位角色", align = 2, sort = 16)
|
|
|
+ @ExcelField(title = "运行单位角色", align = 2, sort = 17)
|
|
|
public String getRunUnitRole() {
|
|
|
return runUnitRole;
|
|
|
}
|
|
@@ -235,7 +244,7 @@ public class Project extends DataEntity<Project> {
|
|
|
this.runUnitRole = runUnitRole;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title = "经研所角色", align = 2, sort = 17)
|
|
|
+ @ExcelField(title = "经研所角色", align = 2, sort = 18)
|
|
|
public String getThroughResearchRole() {
|
|
|
return throughResearchRole;
|
|
|
}
|
|
@@ -248,7 +257,7 @@ public class Project extends DataEntity<Project> {
|
|
|
this.projectManageRole = projectManageRole;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title = "施工单位", align = 2, sort = 18)
|
|
|
+ @ExcelField(title = "施工单位", align = 2, sort = 19)
|
|
|
public String getConstructionUnit() {
|
|
|
return constructionUnit;
|
|
|
}
|
|
@@ -257,12 +266,29 @@ public class Project extends DataEntity<Project> {
|
|
|
this.constructionUnit = constructionUnit;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title = "施工单位角色", align = 2, sort = 19)
|
|
|
+ @ExcelField(title = "施工单位角色", align = 2, sort = 20)
|
|
|
public String getConstructionUnitRole() {
|
|
|
return constructionUnitRole;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title = "设计单位", align = 2, sort = 20)
|
|
|
+ @ExcelField(title = "施工单位项目经理", align = 2, sort = 21)
|
|
|
+ public String getConstructionUnitManage() {
|
|
|
+ return constructionUnitManage;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setConstructionUnitManage(String constructionUnitManage) {
|
|
|
+ this.constructionUnitManage = constructionUnitManage;
|
|
|
+ }
|
|
|
+ @ExcelField(title = "施工单位领导", align = 2, sort = 22)
|
|
|
+ public String getConstructionUnitLeader() {
|
|
|
+ return constructionUnitLeader;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setConstructionUnitLeader(String constructionUnitLeader) {
|
|
|
+ this.constructionUnitLeader = constructionUnitLeader;
|
|
|
+ }
|
|
|
+
|
|
|
+ @ExcelField(title = "设计单位", align = 2, sort = 23)
|
|
|
public String getDesignUnit() {
|
|
|
return designUnit;
|
|
|
}
|
|
@@ -271,7 +297,7 @@ public class Project extends DataEntity<Project> {
|
|
|
this.designUnit = designUnit;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title = "设计单位角色", align = 2, sort = 21)
|
|
|
+ @ExcelField(title = "设计单位角色", align = 2, sort = 24)
|
|
|
public String getDesignUnitManage() {
|
|
|
return designUnitManage;
|
|
|
}
|
|
@@ -280,11 +306,20 @@ public class Project extends DataEntity<Project> {
|
|
|
this.designUnitManage = designUnitManage;
|
|
|
}
|
|
|
|
|
|
+ @ExcelField(title = "设计单位领导", align = 2, sort = 25)
|
|
|
+ public String getDesignUnitLeader() {
|
|
|
+ return designUnitLeader;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDesignUnitLeader(String designUnitLeader) {
|
|
|
+ this.designUnitLeader = designUnitLeader;
|
|
|
+ }
|
|
|
+
|
|
|
public void setConstructionUnitRole(String constructionUnitRole) {
|
|
|
this.constructionUnitRole = constructionUnitRole;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title = "交底类型", align = 2, sort = 22)
|
|
|
+ @ExcelField(title = "交底类型", align = 2, sort = 26)
|
|
|
public String getClarificaitonType() {
|
|
|
return clarificaitonType;
|
|
|
}
|
|
@@ -297,7 +332,7 @@ public class Project extends DataEntity<Project> {
|
|
|
this.requireName = requireName;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title = "建设理由分类", align = 2, sort = 23)
|
|
|
+ @ExcelField(title = "建设理由分类", align = 2, sort = 27)
|
|
|
public String getBulidClassificationResons() {
|
|
|
return bulidClassificationResons;
|
|
|
}
|
|
@@ -306,7 +341,7 @@ public class Project extends DataEntity<Project> {
|
|
|
this.bulidClassificationResons = bulidClassificationResons;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title = "建设理由", align = 2, sort = 24)
|
|
|
+ @ExcelField(title = "建设理由", align = 2, sort = 28)
|
|
|
public String getBulbidResons() {
|
|
|
return bulbidResons;
|
|
|
}
|
|
@@ -315,7 +350,7 @@ public class Project extends DataEntity<Project> {
|
|
|
this.bulbidResons = bulbidResons;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title = "设备基本情况", align = 2, sort = 25)
|
|
|
+ @ExcelField(title = "设备基本情况", align = 2, sort = 29)
|
|
|
public String getAsicEquipment() {
|
|
|
return asicEquipment;
|
|
|
}
|
|
@@ -324,7 +359,7 @@ public class Project extends DataEntity<Project> {
|
|
|
this.asicEquipment = asicEquipment;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title = "运行班", align = 2, sort = 26)
|
|
|
+ @ExcelField(title = "运行班", align = 2, sort = 30)
|
|
|
public String getRunTheClass() {
|
|
|
return runTheClass;
|
|
|
}
|
|
@@ -333,7 +368,7 @@ public class Project extends DataEntity<Project> {
|
|
|
this.runTheClass = runTheClass;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title = "项目组", align = 2, sort = 27)
|
|
|
+ @ExcelField(title = "项目组", align = 2, sort = 31)
|
|
|
public String getProjectTeam() {
|
|
|
return projectTeam;
|
|
|
}
|
|
@@ -342,7 +377,7 @@ public class Project extends DataEntity<Project> {
|
|
|
this.projectTeam = projectTeam;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title = "费用估算", align = 2, sort = 28)
|
|
|
+ @ExcelField(title = "费用估算", align = 2, sort = 32)
|
|
|
public Double getCostEstimate() {
|
|
|
return costEstimate;
|
|
|
}
|
|
@@ -351,7 +386,7 @@ public class Project extends DataEntity<Project> {
|
|
|
this.costEstimate = costEstimate;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title = "是否迎风期度夏项目", align = 2, sort = 29)
|
|
|
+ @ExcelField(title = "是否迎风期度夏项目", align = 2, sort = 33)
|
|
|
public String getWhetherRheUpwind() {
|
|
|
return whetherRheUpwind;
|
|
|
}
|
|
@@ -360,7 +395,7 @@ public class Project extends DataEntity<Project> {
|
|
|
this.whetherRheUpwind = whetherRheUpwind;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title = "确定下达时间", align = 2, sort = 30)
|
|
|
+ @ExcelField(title = "确定下达时间", align = 2, sort = 34)
|
|
|
public String getSureDaDate() {
|
|
|
return sureDaDate;
|
|
|
}
|
|
@@ -369,7 +404,7 @@ public class Project extends DataEntity<Project> {
|
|
|
this.sureDaDate = sureDaDate;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title = "备注", align = 2, sort = 31)
|
|
|
+ @ExcelField(title = "备注", align = 2, sort = 35)
|
|
|
public String getTextRemark() {
|
|
|
return textRemark;
|
|
|
}
|
|
@@ -382,7 +417,7 @@ public class Project extends DataEntity<Project> {
|
|
|
this.textRemark = textRemark;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title = "停电线路", align = 2, sort = 32)
|
|
|
+ @ExcelField(title = "停电线路", align = 2, sort = 36)
|
|
|
public String getPowerLine() {
|
|
|
return powerLine;
|
|
|
}
|
|
@@ -391,7 +426,7 @@ public class Project extends DataEntity<Project> {
|
|
|
this.powerLine = powerLine;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title = "停电范围", align = 2, sort = 33)
|
|
|
+ @ExcelField(title = "停电范围", align = 2, sort = 37)
|
|
|
public String getPowerScope() {
|
|
|
return powerScope;
|
|
|
}
|
|
@@ -400,7 +435,7 @@ public class Project extends DataEntity<Project> {
|
|
|
this.powerScope = powerScope;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title = "项目类型", align = 2, sort = 34)
|
|
|
+ @ExcelField(title = "项目类型", align = 2, sort = 38)
|
|
|
public String getProjectType() {
|
|
|
return projectType;
|
|
|
}
|
|
@@ -409,7 +444,7 @@ public class Project extends DataEntity<Project> {
|
|
|
this.projectType = projectType;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title = "是否为停电打包项目", align = 2, sort = 35)
|
|
|
+ @ExcelField(title = "是否为停电打包项目", align = 2, sort = 39)
|
|
|
public String getPowerFlagPackage() {
|
|
|
return powerFlagPackage;
|
|
|
}
|
|
@@ -418,7 +453,7 @@ public class Project extends DataEntity<Project> {
|
|
|
this.powerFlagPackage = powerFlagPackage;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title = "证处初步判断", align = 2, sort = 36)
|
|
|
+ @ExcelField(title = "证处初步判断", align = 2, sort = 40)
|
|
|
public String getPreliminaryJudgment() {
|
|
|
return preliminaryJudgment;
|
|
|
}
|
|
@@ -427,7 +462,7 @@ public class Project extends DataEntity<Project> {
|
|
|
this.preliminaryJudgment = preliminaryJudgment;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title = "是否含土建(不含钢管杆)", align = 2, sort = 37)
|
|
|
+ @ExcelField(title = "是否含土建(不含钢管杆)", align = 2, sort = 41)
|
|
|
public String getFlagCivilEngineering() {
|
|
|
return flagCivilEngineering;
|
|
|
}
|
|
@@ -436,7 +471,7 @@ public class Project extends DataEntity<Project> {
|
|
|
this.flagCivilEngineering = flagCivilEngineering;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title = "钢管杆基础类型", align = 2, sort = 38)
|
|
|
+ @ExcelField(title = "钢管杆基础类型", align = 2, sort = 42)
|
|
|
public String getSteelTubePole() {
|
|
|
return steelTubePole;
|
|
|
}
|
|
@@ -445,7 +480,7 @@ public class Project extends DataEntity<Project> {
|
|
|
this.steelTubePole = steelTubePole;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title = "是否需要规矩报批", align = 2, sort = 39)
|
|
|
+ @ExcelField(title = "是否需要规矩报批", align = 2, sort = 43)
|
|
|
public String getFlagApprovalPlanning() {
|
|
|
return flagApprovalPlanning;
|
|
|
}
|
|
@@ -454,7 +489,7 @@ public class Project extends DataEntity<Project> {
|
|
|
this.flagApprovalPlanning = flagApprovalPlanning;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title = "设备改造类型", align = 2, sort = 40)
|
|
|
+ @ExcelField(title = "设备改造类型", align = 2, sort = 44)
|
|
|
public String getEquCreateType() {
|
|
|
return equCreateType;
|
|
|
}
|
|
@@ -463,7 +498,7 @@ public class Project extends DataEntity<Project> {
|
|
|
this.equCreateType = equCreateType;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title = "改造设备尺寸及间隔数", align = 2, sort = 41)
|
|
|
+ @ExcelField(title = "改造设备尺寸及间隔数", align = 2, sort = 45)
|
|
|
public String getEquCreateSize() {
|
|
|
return equCreateSize;
|
|
|
}
|
|
@@ -472,7 +507,7 @@ public class Project extends DataEntity<Project> {
|
|
|
this.equCreateSize = equCreateSize;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title = "是否新设备命名", align = 2, sort = 42)
|
|
|
+ @ExcelField(title = "是否新设备命名", align = 2, sort = 46)
|
|
|
public String getFlagNewEquName() {
|
|
|
return flagNewEquName;
|
|
|
}
|
|
@@ -481,7 +516,7 @@ public class Project extends DataEntity<Project> {
|
|
|
this.flagNewEquName = flagNewEquName;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title = "是否含变电站新闻隔投运", align = 2, sort = 43)
|
|
|
+ @ExcelField(title = "是否含变电站新闻隔投运", align = 2, sort = 47)
|
|
|
public String getIncludeBdzNews() {
|
|
|
return includeBdzNews;
|
|
|
}
|
|
@@ -490,7 +525,7 @@ public class Project extends DataEntity<Project> {
|
|
|
this.includeBdzNews = includeBdzNews;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title = "是否非涉电电气施工", align = 2, sort = 44)
|
|
|
+ @ExcelField(title = "是否非涉电电气施工", align = 2, sort = 48)
|
|
|
public String getFlagNoElectrical() {
|
|
|
return flagNoElectrical;
|
|
|
}
|
|
@@ -499,7 +534,7 @@ public class Project extends DataEntity<Project> {
|
|
|
this.flagNoElectrical = flagNoElectrical;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title = "图纸标注的带点作业情况", align = 2, sort = 45)
|
|
|
+ @ExcelField(title = "图纸标注的带点作业情况", align = 2, sort = 49)
|
|
|
public String getDrawingsWork() {
|
|
|
return drawingsWork;
|
|
|
}
|
|
@@ -508,7 +543,7 @@ public class Project extends DataEntity<Project> {
|
|
|
this.drawingsWork = drawingsWork;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title = "是否含自动化", align = 2, sort = 46)
|
|
|
+ @ExcelField(title = "是否含自动化", align = 2, sort = 50)
|
|
|
public String getFlagAutomation() {
|
|
|
return flagAutomation;
|
|
|
}
|
|
@@ -517,7 +552,7 @@ public class Project extends DataEntity<Project> {
|
|
|
this.flagAutomation = flagAutomation;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title = "二摇或三摇", align = 2, sort = 47)
|
|
|
+ @ExcelField(title = "二摇或三摇", align = 2, sort = 51)
|
|
|
public String getTwoAndThreeRemote() {
|
|
|
return twoAndThreeRemote;
|
|
|
}
|
|
@@ -526,7 +561,7 @@ public class Project extends DataEntity<Project> {
|
|
|
this.twoAndThreeRemote = twoAndThreeRemote;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title = "通信方式", align = 2, sort = 48)
|
|
|
+ @ExcelField(title = "通信方式", align = 2, sort = 52)
|
|
|
public String getPhoneStyle() {
|
|
|
return phoneStyle;
|
|
|
}
|
|
@@ -535,7 +570,7 @@ public class Project extends DataEntity<Project> {
|
|
|
this.phoneStyle = phoneStyle;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title = "柱开集中或就业地", align = 2, sort = 49)
|
|
|
+ @ExcelField(title = "柱开集中或就业地", align = 2, sort = 53)
|
|
|
public String getStayOpenArea() {
|
|
|
return stayOpenArea;
|
|
|
}
|
|
@@ -544,7 +579,7 @@ public class Project extends DataEntity<Project> {
|
|
|
this.stayOpenArea = stayOpenArea;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title = "环网柜", align = 2, sort = 50)
|
|
|
+ @ExcelField(title = "环网柜", align = 2, sort = 54)
|
|
|
public String getRingNetworkCabinet() {
|
|
|
return ringNetworkCabinet;
|
|
|
}
|
|
@@ -553,7 +588,7 @@ public class Project extends DataEntity<Project> {
|
|
|
this.ringNetworkCabinet = ringNetworkCabinet;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title = "站房DTU", align = 2, sort = 51)
|
|
|
+ @ExcelField(title = "站房DTU", align = 2, sort = 55)
|
|
|
public String getStationDtu() {
|
|
|
return stationDtu;
|
|
|
}
|
|
@@ -570,37 +605,7 @@ public class Project extends DataEntity<Project> {
|
|
|
this.earlyMaterial = earlyMaterial;
|
|
|
}
|
|
|
|
|
|
- public String getConstructionUnitManage() {
|
|
|
- return constructionUnitManage;
|
|
|
- }
|
|
|
-
|
|
|
- public void setConstructionUnitManage(String constructionUnitManage) {
|
|
|
- this.constructionUnitManage = constructionUnitManage;
|
|
|
- }
|
|
|
-
|
|
|
- public String getConstructionUnitLeader() {
|
|
|
- return constructionUnitLeader;
|
|
|
- }
|
|
|
-
|
|
|
- public void setConstructionUnitLeader(String constructionUnitLeader) {
|
|
|
- this.constructionUnitLeader = constructionUnitLeader;
|
|
|
- }
|
|
|
|
|
|
- public String getDesignUnitLeader() {
|
|
|
- return designUnitLeader;
|
|
|
- }
|
|
|
-
|
|
|
- public void setDesignUnitLeader(String designUnitLeader) {
|
|
|
- this.designUnitLeader = designUnitLeader;
|
|
|
- }
|
|
|
-
|
|
|
- public String getItemType() {
|
|
|
- return itemType;
|
|
|
- }
|
|
|
-
|
|
|
- public void setItemType(String itemType) {
|
|
|
- this.itemType = itemType;
|
|
|
- }
|
|
|
|
|
|
public Integer getPreConstruction() {
|
|
|
return preConstruction;
|