|
@@ -60,6 +60,7 @@ public class Project extends DataEntity<Project> {
|
|
|
private String acquisitionStatus;//领料状态
|
|
|
private String constructionStatus;//施工状态
|
|
|
private String whetherCloseStatus;//是否项目关闭
|
|
|
+ private Integer earlyMaterial;//判断项目是否可以提前发起领料
|
|
|
|
|
|
public String getStatus() {
|
|
|
return status;
|
|
@@ -93,7 +94,7 @@ public class Project extends DataEntity<Project> {
|
|
|
this.whetherCloseStatus = whetherCloseStatus;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title="类型", align=2, sort=1)
|
|
|
+ @ExcelField(title = "类型", align = 2, sort = 1)
|
|
|
public String getType() {
|
|
|
return type;
|
|
|
}
|
|
@@ -102,7 +103,7 @@ public class Project extends DataEntity<Project> {
|
|
|
this.type = type;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title="需求提出单位", align=2, sort=2)
|
|
|
+ @ExcelField(title = "需求提出单位", align = 2, sort = 2)
|
|
|
public String getDemandUnit() {
|
|
|
return demandUnit;
|
|
|
}
|
|
@@ -110,7 +111,8 @@ public class Project extends DataEntity<Project> {
|
|
|
public void setDemandUnit(String demandUnit) {
|
|
|
this.demandUnit = demandUnit;
|
|
|
}
|
|
|
- @ExcelField(title="变电站名称", align=2, sort=3)
|
|
|
+
|
|
|
+ @ExcelField(title = "变电站名称", align = 2, sort = 3)
|
|
|
public String getBdzName() {
|
|
|
return bdzName;
|
|
|
}
|
|
@@ -118,7 +120,8 @@ public class Project extends DataEntity<Project> {
|
|
|
public void setBdzName(String bdzName) {
|
|
|
this.bdzName = bdzName;
|
|
|
}
|
|
|
- @ExcelField(title="线路名称", align=2, sort=4)
|
|
|
+
|
|
|
+ @ExcelField(title = "线路名称", align = 2, sort = 4)
|
|
|
public String getLineName() {
|
|
|
return lineName;
|
|
|
}
|
|
@@ -126,12 +129,13 @@ public class Project extends DataEntity<Project> {
|
|
|
public void setLineName(String lineName) {
|
|
|
this.lineName = lineName;
|
|
|
}
|
|
|
- @ExcelField(title="项目需求名称", align=2, sort=5)
|
|
|
+
|
|
|
+ @ExcelField(title = "项目需求名称", align = 2, sort = 5)
|
|
|
public String getRequireName() {
|
|
|
return requireName;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title="工程编号", align=2, sort=6)
|
|
|
+ @ExcelField(title = "工程编号", align = 2, sort = 6)
|
|
|
public String getProjectId() {
|
|
|
return projectId;
|
|
|
}
|
|
@@ -139,7 +143,8 @@ public class Project extends DataEntity<Project> {
|
|
|
public void setProjectId(String projectId) {
|
|
|
this.projectId = projectId;
|
|
|
}
|
|
|
- @ExcelField(title="项目名称", align=2, sort=7)
|
|
|
+
|
|
|
+ @ExcelField(title = "项目名称", align = 2, sort = 7)
|
|
|
public String getProjectName() {
|
|
|
return projectName;
|
|
|
}
|
|
@@ -147,7 +152,8 @@ public class Project extends DataEntity<Project> {
|
|
|
public void setProjectName(String projectName) {
|
|
|
this.projectName = projectName;
|
|
|
}
|
|
|
- @ExcelField(title="项目定义号", align=2, sort=8)
|
|
|
+
|
|
|
+ @ExcelField(title = "项目定义号", align = 2, sort = 8)
|
|
|
public String getProjectNumber() {
|
|
|
return projectNumber;
|
|
|
}
|
|
@@ -155,12 +161,13 @@ public class Project extends DataEntity<Project> {
|
|
|
public void setProjectNumber(String projectNumber) {
|
|
|
this.projectNumber = projectNumber;
|
|
|
}
|
|
|
- @ExcelField(title="项目经理角色", align=2, sort=9)
|
|
|
+
|
|
|
+ @ExcelField(title = "项目经理角色", align = 2, sort = 9)
|
|
|
public String getProjectManageRole() {
|
|
|
return projectManageRole;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title="配网工程专职角色", align=2, sort=10)
|
|
|
+ @ExcelField(title = "配网工程专职角色", align = 2, sort = 10)
|
|
|
public String getDistributionEngineering() {
|
|
|
return distributionEngineering;
|
|
|
}
|
|
@@ -168,7 +175,8 @@ public class Project extends DataEntity<Project> {
|
|
|
public void setDistributionEngineering(String distributionEngineering) {
|
|
|
this.distributionEngineering = distributionEngineering;
|
|
|
}
|
|
|
- @ExcelField(title="配网物资专职角色", align=2, sort=11)
|
|
|
+
|
|
|
+ @ExcelField(title = "配网物资专职角色", align = 2, sort = 11)
|
|
|
public String getDistributionMaterials() {
|
|
|
return distributionMaterials;
|
|
|
}
|
|
@@ -176,7 +184,8 @@ public class Project extends DataEntity<Project> {
|
|
|
public void setDistributionMaterials(String distributionMaterials) {
|
|
|
this.distributionMaterials = distributionMaterials;
|
|
|
}
|
|
|
- @ExcelField(title="配网系统专职角色", align=2, sort=12)
|
|
|
+
|
|
|
+ @ExcelField(title = "配网系统专职角色", align = 2, sort = 12)
|
|
|
public String getDistributionSystem() {
|
|
|
return distributionSystem;
|
|
|
}
|
|
@@ -184,7 +193,8 @@ public class Project extends DataEntity<Project> {
|
|
|
public void setDistributionSystem(String distributionSystem) {
|
|
|
this.distributionSystem = distributionSystem;
|
|
|
}
|
|
|
- @ExcelField(title="配网政策处理专职角色", align=2, sort=13)
|
|
|
+
|
|
|
+ @ExcelField(title = "配网政策处理专职角色", align = 2, sort = 13)
|
|
|
public String getDistributionPolicy() {
|
|
|
return distributionPolicy;
|
|
|
}
|
|
@@ -192,7 +202,8 @@ public class Project extends DataEntity<Project> {
|
|
|
public void setDistributionPolicy(String distributionPolicy) {
|
|
|
this.distributionPolicy = distributionPolicy;
|
|
|
}
|
|
|
- @ExcelField(title="项目管理中心领导角色", align=2, sort=14)
|
|
|
+
|
|
|
+ @ExcelField(title = "项目管理中心领导角色", align = 2, sort = 14)
|
|
|
public String getManagementLeader() {
|
|
|
return managementLeader;
|
|
|
}
|
|
@@ -200,7 +211,8 @@ public class Project extends DataEntity<Project> {
|
|
|
public void setManagementLeader(String managementLeader) {
|
|
|
this.managementLeader = managementLeader;
|
|
|
}
|
|
|
- @ExcelField(title="运行单位", align=2, sort=15)
|
|
|
+
|
|
|
+ @ExcelField(title = "运行单位", align = 2, sort = 15)
|
|
|
public String getRunUnit() {
|
|
|
return runUnit;
|
|
|
}
|
|
@@ -208,7 +220,8 @@ public class Project extends DataEntity<Project> {
|
|
|
public void setRunUnit(String runUnit) {
|
|
|
this.runUnit = runUnit;
|
|
|
}
|
|
|
- @ExcelField(title="运行单位角色", align=2, sort=16)
|
|
|
+
|
|
|
+ @ExcelField(title = "运行单位角色", align = 2, sort = 16)
|
|
|
public String getRunUnitRole() {
|
|
|
return runUnitRole;
|
|
|
}
|
|
@@ -216,7 +229,8 @@ public class Project extends DataEntity<Project> {
|
|
|
public void setRunUnitRole(String runUnitRole) {
|
|
|
this.runUnitRole = runUnitRole;
|
|
|
}
|
|
|
- @ExcelField(title="经研所角色", align=2, sort=17)
|
|
|
+
|
|
|
+ @ExcelField(title = "经研所角色", align = 2, sort = 17)
|
|
|
public String getThroughResearchRole() {
|
|
|
return throughResearchRole;
|
|
|
}
|
|
@@ -228,7 +242,8 @@ public class Project extends DataEntity<Project> {
|
|
|
public void setProjectManageRole(String projectManageRole) {
|
|
|
this.projectManageRole = projectManageRole;
|
|
|
}
|
|
|
- @ExcelField(title="施工单位", align=2, sort=18)
|
|
|
+
|
|
|
+ @ExcelField(title = "施工单位", align = 2, sort = 18)
|
|
|
public String getConstructionUnit() {
|
|
|
return constructionUnit;
|
|
|
}
|
|
@@ -236,11 +251,13 @@ public class Project extends DataEntity<Project> {
|
|
|
public void setConstructionUnit(String constructionUnit) {
|
|
|
this.constructionUnit = constructionUnit;
|
|
|
}
|
|
|
- @ExcelField(title="施工单位角色", align=2, sort=19)
|
|
|
+
|
|
|
+ @ExcelField(title = "施工单位角色", align = 2, sort = 19)
|
|
|
public String getConstructionUnitRole() {
|
|
|
return constructionUnitRole;
|
|
|
}
|
|
|
- @ExcelField(title="设计单位", align=2, sort=20)
|
|
|
+
|
|
|
+ @ExcelField(title = "设计单位", align = 2, sort = 20)
|
|
|
public String getDesignUnit() {
|
|
|
return designUnit;
|
|
|
}
|
|
@@ -248,7 +265,8 @@ public class Project extends DataEntity<Project> {
|
|
|
public void setDesignUnit(String designUnit) {
|
|
|
this.designUnit = designUnit;
|
|
|
}
|
|
|
- @ExcelField(title="设计单位角色", align=2, sort=21)
|
|
|
+
|
|
|
+ @ExcelField(title = "设计单位角色", align = 2, sort = 21)
|
|
|
public String getDesignUnitRole() {
|
|
|
return designUnitRole;
|
|
|
}
|
|
@@ -260,7 +278,8 @@ public class Project extends DataEntity<Project> {
|
|
|
public void setConstructionUnitRole(String constructionUnitRole) {
|
|
|
this.constructionUnitRole = constructionUnitRole;
|
|
|
}
|
|
|
- @ExcelField(title="交底类型", align=2, sort=22)
|
|
|
+
|
|
|
+ @ExcelField(title = "交底类型", align = 2, sort = 22)
|
|
|
public String getClarificaitonType() {
|
|
|
return clarificaitonType;
|
|
|
}
|
|
@@ -272,7 +291,8 @@ public class Project extends DataEntity<Project> {
|
|
|
public void setRequireName(String requireName) {
|
|
|
this.requireName = requireName;
|
|
|
}
|
|
|
- @ExcelField(title="建设理由分类", align=2, sort=23)
|
|
|
+
|
|
|
+ @ExcelField(title = "建设理由分类", align = 2, sort = 23)
|
|
|
public String getBulidClassificationResons() {
|
|
|
return bulidClassificationResons;
|
|
|
}
|
|
@@ -280,7 +300,8 @@ public class Project extends DataEntity<Project> {
|
|
|
public void setBulidClassificationResons(String bulidClassificationResons) {
|
|
|
this.bulidClassificationResons = bulidClassificationResons;
|
|
|
}
|
|
|
- @ExcelField(title="建设理由", align=2, sort=24)
|
|
|
+
|
|
|
+ @ExcelField(title = "建设理由", align = 2, sort = 24)
|
|
|
public String getBulbidResons() {
|
|
|
return bulbidResons;
|
|
|
}
|
|
@@ -288,7 +309,8 @@ public class Project extends DataEntity<Project> {
|
|
|
public void setBulbidResons(String bulbidResons) {
|
|
|
this.bulbidResons = bulbidResons;
|
|
|
}
|
|
|
- @ExcelField(title="设备基本情况", align=2, sort=25)
|
|
|
+
|
|
|
+ @ExcelField(title = "设备基本情况", align = 2, sort = 25)
|
|
|
public String getAsicEquipment() {
|
|
|
return asicEquipment;
|
|
|
}
|
|
@@ -296,7 +318,8 @@ public class Project extends DataEntity<Project> {
|
|
|
public void setAsicEquipment(String asicEquipment) {
|
|
|
this.asicEquipment = asicEquipment;
|
|
|
}
|
|
|
- @ExcelField(title="运行班", align=2, sort=26)
|
|
|
+
|
|
|
+ @ExcelField(title = "运行班", align = 2, sort = 26)
|
|
|
public String getRunTheClass() {
|
|
|
return runTheClass;
|
|
|
}
|
|
@@ -304,7 +327,8 @@ public class Project extends DataEntity<Project> {
|
|
|
public void setRunTheClass(String runTheClass) {
|
|
|
this.runTheClass = runTheClass;
|
|
|
}
|
|
|
- @ExcelField(title="项目组", align=2, sort=27)
|
|
|
+
|
|
|
+ @ExcelField(title = "项目组", align = 2, sort = 27)
|
|
|
public String getProjectTeam() {
|
|
|
return projectTeam;
|
|
|
}
|
|
@@ -312,7 +336,8 @@ public class Project extends DataEntity<Project> {
|
|
|
public void setProjectTeam(String projectTeam) {
|
|
|
this.projectTeam = projectTeam;
|
|
|
}
|
|
|
- @ExcelField(title="费用估算", align=2, sort=28)
|
|
|
+
|
|
|
+ @ExcelField(title = "费用估算", align = 2, sort = 28)
|
|
|
public Double getCostEstimate() {
|
|
|
return costEstimate;
|
|
|
}
|
|
@@ -320,7 +345,8 @@ public class Project extends DataEntity<Project> {
|
|
|
public void setCostEstimate(Double costEstimate) {
|
|
|
this.costEstimate = costEstimate;
|
|
|
}
|
|
|
- @ExcelField(title="是否迎风期度夏项目", align=2, sort=29)
|
|
|
+
|
|
|
+ @ExcelField(title = "是否迎风期度夏项目", align = 2, sort = 29)
|
|
|
public String getWhetherRheUpwind() {
|
|
|
return whetherRheUpwind;
|
|
|
}
|
|
@@ -328,7 +354,8 @@ public class Project extends DataEntity<Project> {
|
|
|
public void setWhetherRheUpwind(String whetherRheUpwind) {
|
|
|
this.whetherRheUpwind = whetherRheUpwind;
|
|
|
}
|
|
|
- @ExcelField(title="确定下达时间", align=2, sort=30)
|
|
|
+
|
|
|
+ @ExcelField(title = "确定下达时间", align = 2, sort = 30)
|
|
|
public String getSureDaDate() {
|
|
|
return sureDaDate;
|
|
|
}
|
|
@@ -337,7 +364,7 @@ public class Project extends DataEntity<Project> {
|
|
|
this.sureDaDate = sureDaDate;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title="备注", align=2, sort=31)
|
|
|
+ @ExcelField(title = "备注", align = 2, sort = 31)
|
|
|
public String getTextRemark() {
|
|
|
return textRemark;
|
|
|
}
|
|
@@ -350,7 +377,7 @@ public class Project extends DataEntity<Project> {
|
|
|
this.textRemark = textRemark;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title="停电线路", align=2, sort=32)
|
|
|
+ @ExcelField(title = "停电线路", align = 2, sort = 32)
|
|
|
public String getPowerLine() {
|
|
|
return powerLine;
|
|
|
}
|
|
@@ -358,7 +385,8 @@ public class Project extends DataEntity<Project> {
|
|
|
public void setPowerLine(String powerLine) {
|
|
|
this.powerLine = powerLine;
|
|
|
}
|
|
|
- @ExcelField(title="停电范围", align=2, sort=33)
|
|
|
+
|
|
|
+ @ExcelField(title = "停电范围", align = 2, sort = 33)
|
|
|
public String getPowerScope() {
|
|
|
return powerScope;
|
|
|
}
|
|
@@ -366,7 +394,8 @@ public class Project extends DataEntity<Project> {
|
|
|
public void setPowerScope(String powerScope) {
|
|
|
this.powerScope = powerScope;
|
|
|
}
|
|
|
- @ExcelField(title="项目类型", align=2, sort=34)
|
|
|
+
|
|
|
+ @ExcelField(title = "项目类型", align = 2, sort = 34)
|
|
|
public String getProjectType() {
|
|
|
return projectType;
|
|
|
}
|
|
@@ -374,7 +403,8 @@ public class Project extends DataEntity<Project> {
|
|
|
public void setProjectType(String projectType) {
|
|
|
this.projectType = projectType;
|
|
|
}
|
|
|
- @ExcelField(title="是否为停电打包项目", align=2, sort=35)
|
|
|
+
|
|
|
+ @ExcelField(title = "是否为停电打包项目", align = 2, sort = 35)
|
|
|
public String getPowerFlagPackage() {
|
|
|
return powerFlagPackage;
|
|
|
}
|
|
@@ -382,7 +412,8 @@ public class Project extends DataEntity<Project> {
|
|
|
public void setPowerFlagPackage(String powerFlagPackage) {
|
|
|
this.powerFlagPackage = powerFlagPackage;
|
|
|
}
|
|
|
- @ExcelField(title="证处初步判断", align=2, sort=36)
|
|
|
+
|
|
|
+ @ExcelField(title = "证处初步判断", align = 2, sort = 36)
|
|
|
public String getPreliminaryJudgment() {
|
|
|
return preliminaryJudgment;
|
|
|
}
|
|
@@ -390,7 +421,8 @@ public class Project extends DataEntity<Project> {
|
|
|
public void setPreliminaryJudgment(String preliminaryJudgment) {
|
|
|
this.preliminaryJudgment = preliminaryJudgment;
|
|
|
}
|
|
|
- @ExcelField(title="是否含土建(不含钢管杆)", align=2, sort=37)
|
|
|
+
|
|
|
+ @ExcelField(title = "是否含土建(不含钢管杆)", align = 2, sort = 37)
|
|
|
public String getFlagCivilEngineering() {
|
|
|
return flagCivilEngineering;
|
|
|
}
|
|
@@ -398,7 +430,8 @@ public class Project extends DataEntity<Project> {
|
|
|
public void setFlagCivilEngineering(String flagCivilEngineering) {
|
|
|
this.flagCivilEngineering = flagCivilEngineering;
|
|
|
}
|
|
|
- @ExcelField(title="钢管杆基础类型", align=2, sort=38)
|
|
|
+
|
|
|
+ @ExcelField(title = "钢管杆基础类型", align = 2, sort = 38)
|
|
|
public String getSteelTubePole() {
|
|
|
return steelTubePole;
|
|
|
}
|
|
@@ -406,7 +439,8 @@ public class Project extends DataEntity<Project> {
|
|
|
public void setSteelTubePole(String steelTubePole) {
|
|
|
this.steelTubePole = steelTubePole;
|
|
|
}
|
|
|
- @ExcelField(title="是否需要规矩报批", align=2, sort=39)
|
|
|
+
|
|
|
+ @ExcelField(title = "是否需要规矩报批", align = 2, sort = 39)
|
|
|
public String getFlagApprovalPlanning() {
|
|
|
return flagApprovalPlanning;
|
|
|
}
|
|
@@ -414,7 +448,8 @@ public class Project extends DataEntity<Project> {
|
|
|
public void setFlagApprovalPlanning(String flagApprovalPlanning) {
|
|
|
this.flagApprovalPlanning = flagApprovalPlanning;
|
|
|
}
|
|
|
- @ExcelField(title="设备改造类型", align=2, sort=40)
|
|
|
+
|
|
|
+ @ExcelField(title = "设备改造类型", align = 2, sort = 40)
|
|
|
public String getEquCreateType() {
|
|
|
return equCreateType;
|
|
|
}
|
|
@@ -422,7 +457,8 @@ public class Project extends DataEntity<Project> {
|
|
|
public void setEquCreateType(String equCreateType) {
|
|
|
this.equCreateType = equCreateType;
|
|
|
}
|
|
|
- @ExcelField(title="改造设备尺寸及间隔数", align=2, sort=41)
|
|
|
+
|
|
|
+ @ExcelField(title = "改造设备尺寸及间隔数", align = 2, sort = 41)
|
|
|
public String getEquCreateSize() {
|
|
|
return equCreateSize;
|
|
|
}
|
|
@@ -430,7 +466,8 @@ public class Project extends DataEntity<Project> {
|
|
|
public void setEquCreateSize(String equCreateSize) {
|
|
|
this.equCreateSize = equCreateSize;
|
|
|
}
|
|
|
- @ExcelField(title="是否新设备命名", align=2, sort=42)
|
|
|
+
|
|
|
+ @ExcelField(title = "是否新设备命名", align = 2, sort = 42)
|
|
|
public String getFlagNewEquName() {
|
|
|
return flagNewEquName;
|
|
|
}
|
|
@@ -438,7 +475,8 @@ public class Project extends DataEntity<Project> {
|
|
|
public void setFlagNewEquName(String flagNewEquName) {
|
|
|
this.flagNewEquName = flagNewEquName;
|
|
|
}
|
|
|
- @ExcelField(title="是否含变电站新闻隔投运", align=2, sort=43)
|
|
|
+
|
|
|
+ @ExcelField(title = "是否含变电站新闻隔投运", align = 2, sort = 43)
|
|
|
public String getIncludeBdzNews() {
|
|
|
return includeBdzNews;
|
|
|
}
|
|
@@ -446,7 +484,8 @@ public class Project extends DataEntity<Project> {
|
|
|
public void setIncludeBdzNews(String includeBdzNews) {
|
|
|
this.includeBdzNews = includeBdzNews;
|
|
|
}
|
|
|
- @ExcelField(title="是否非涉电电气施工", align=2, sort=44)
|
|
|
+
|
|
|
+ @ExcelField(title = "是否非涉电电气施工", align = 2, sort = 44)
|
|
|
public String getFlagNoElectrical() {
|
|
|
return flagNoElectrical;
|
|
|
}
|
|
@@ -454,7 +493,8 @@ public class Project extends DataEntity<Project> {
|
|
|
public void setFlagNoElectrical(String flagNoElectrical) {
|
|
|
this.flagNoElectrical = flagNoElectrical;
|
|
|
}
|
|
|
- @ExcelField(title="图纸标注的带点作业情况", align=2, sort=45)
|
|
|
+
|
|
|
+ @ExcelField(title = "图纸标注的带点作业情况", align = 2, sort = 45)
|
|
|
public String getDrawingsWork() {
|
|
|
return drawingsWork;
|
|
|
}
|
|
@@ -462,7 +502,8 @@ public class Project extends DataEntity<Project> {
|
|
|
public void setDrawingsWork(String drawingsWork) {
|
|
|
this.drawingsWork = drawingsWork;
|
|
|
}
|
|
|
- @ExcelField(title="是否含自动化", align=2, sort=46)
|
|
|
+
|
|
|
+ @ExcelField(title = "是否含自动化", align = 2, sort = 46)
|
|
|
public String getFlagAutomation() {
|
|
|
return flagAutomation;
|
|
|
}
|
|
@@ -470,7 +511,8 @@ public class Project extends DataEntity<Project> {
|
|
|
public void setFlagAutomation(String flagAutomation) {
|
|
|
this.flagAutomation = flagAutomation;
|
|
|
}
|
|
|
- @ExcelField(title="二摇或三摇", align=2, sort=47)
|
|
|
+
|
|
|
+ @ExcelField(title = "二摇或三摇", align = 2, sort = 47)
|
|
|
public String getTwoAndThreeRemote() {
|
|
|
return twoAndThreeRemote;
|
|
|
}
|
|
@@ -478,7 +520,8 @@ public class Project extends DataEntity<Project> {
|
|
|
public void setTwoAndThreeRemote(String twoAndThreeRemote) {
|
|
|
this.twoAndThreeRemote = twoAndThreeRemote;
|
|
|
}
|
|
|
- @ExcelField(title="通信方式", align=2, sort=48)
|
|
|
+
|
|
|
+ @ExcelField(title = "通信方式", align = 2, sort = 48)
|
|
|
public String getPhoneStyle() {
|
|
|
return phoneStyle;
|
|
|
}
|
|
@@ -486,7 +529,8 @@ public class Project extends DataEntity<Project> {
|
|
|
public void setPhoneStyle(String phoneStyle) {
|
|
|
this.phoneStyle = phoneStyle;
|
|
|
}
|
|
|
- @ExcelField(title="柱开集中或就业地", align=2, sort=49)
|
|
|
+
|
|
|
+ @ExcelField(title = "柱开集中或就业地", align = 2, sort = 49)
|
|
|
public String getStayOpenArea() {
|
|
|
return stayOpenArea;
|
|
|
}
|
|
@@ -494,7 +538,8 @@ public class Project extends DataEntity<Project> {
|
|
|
public void setStayOpenArea(String stayOpenArea) {
|
|
|
this.stayOpenArea = stayOpenArea;
|
|
|
}
|
|
|
- @ExcelField(title="环网柜", align=2, sort=50)
|
|
|
+
|
|
|
+ @ExcelField(title = "环网柜", align = 2, sort = 50)
|
|
|
public String getRingNetworkCabinet() {
|
|
|
return ringNetworkCabinet;
|
|
|
}
|
|
@@ -502,7 +547,8 @@ public class Project extends DataEntity<Project> {
|
|
|
public void setRingNetworkCabinet(String ringNetworkCabinet) {
|
|
|
this.ringNetworkCabinet = ringNetworkCabinet;
|
|
|
}
|
|
|
- @ExcelField(title="站房DTU", align=2, sort=51)
|
|
|
+
|
|
|
+ @ExcelField(title = "站房DTU", align = 2, sort = 51)
|
|
|
public String getStationDtu() {
|
|
|
return stationDtu;
|
|
|
}
|
|
@@ -511,4 +557,11 @@ public class Project extends DataEntity<Project> {
|
|
|
this.stationDtu = stationDtu;
|
|
|
}
|
|
|
|
|
|
+ public Integer getEarlyMaterial() {
|
|
|
+ return earlyMaterial;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setEarlyMaterial(Integer earlyMaterial) {
|
|
|
+ this.earlyMaterial = earlyMaterial;
|
|
|
+ }
|
|
|
}
|