|
@@ -26,6 +26,34 @@ public class Disclose extends ActEntity<Disclose> {
|
|
|
private String needReplace;
|
|
|
private String overallTransformation;
|
|
|
|
|
|
+ private String explanationOfNecessity;//必要性问题说明
|
|
|
+ private String inconsistentDescription;//图纸现场不一致说明
|
|
|
+ private String policyHandlingInstructions;//政策处理说明
|
|
|
+
|
|
|
+ public String getExplanationOfNecessity() {
|
|
|
+ return explanationOfNecessity;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setExplanationOfNecessity(String explanationOfNecessity) {
|
|
|
+ this.explanationOfNecessity = explanationOfNecessity;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getInconsistentDescription() {
|
|
|
+ return inconsistentDescription;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setInconsistentDescription(String inconsistentDescription) {
|
|
|
+ this.inconsistentDescription = inconsistentDescription;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPolicyHandlingInstructions() {
|
|
|
+ return policyHandlingInstructions;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPolicyHandlingInstructions(String policyHandlingInstructions) {
|
|
|
+ this.policyHandlingInstructions = policyHandlingInstructions;
|
|
|
+ }
|
|
|
+
|
|
|
public String getConId() {
|
|
|
return conId;
|
|
|
}
|
|
@@ -193,4 +221,34 @@ public class Disclose extends ActEntity<Disclose> {
|
|
|
public void setOverallTransformation(String overallTransformation) {
|
|
|
this.overallTransformation = overallTransformation;
|
|
|
}
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public String toString() {
|
|
|
+ return "Disclose{" +
|
|
|
+ "conId='" + conId + '\'' +
|
|
|
+ ", channel='" + channel + '\'' +
|
|
|
+ ", capacity='" + capacity + '\'' +
|
|
|
+ ", sceneSize='" + sceneSize + '\'' +
|
|
|
+ ", capacitySize='" + capacitySize + '\'' +
|
|
|
+ ", hiddenDanger='" + hiddenDanger + '\'' +
|
|
|
+ ", influenceConstruction='" + influenceConstruction + '\'' +
|
|
|
+ ", projectRepetition='" + projectRepetition + '\'' +
|
|
|
+ ", implemented='" + implemented + '\'' +
|
|
|
+ ", transformer='" + transformer + '\'' +
|
|
|
+ ", lineName='" + lineName + '\'' +
|
|
|
+ ", quantities='" + quantities + '\'' +
|
|
|
+ ", rodNumber='" + rodNumber + '\'' +
|
|
|
+ ", administrationType='" + administrationType + '\'' +
|
|
|
+ ", politicalProblem='" + politicalProblem + '\'' +
|
|
|
+ ", precondition='" + precondition + '\'' +
|
|
|
+ ", placementMode='" + placementMode + '\'' +
|
|
|
+ ", productionDate='" + productionDate + '\'' +
|
|
|
+ ", IntegrateModule='" + IntegrateModule + '\'' +
|
|
|
+ ", needReplace='" + needReplace + '\'' +
|
|
|
+ ", overallTransformation='" + overallTransformation + '\'' +
|
|
|
+ ", explanationOfNecessity='" + explanationOfNecessity + '\'' +
|
|
|
+ ", inconsistentDescription='" + inconsistentDescription + '\'' +
|
|
|
+ ", policyHandlingInstructions='" + policyHandlingInstructions + '\'' +
|
|
|
+ '}';
|
|
|
+ }
|
|
|
}
|