|
@@ -116,6 +116,8 @@ public class ProjectRecords extends ActEntity<ProjectRecords> {
|
|
|
private String dictType;
|
|
|
private String parentIds;
|
|
|
private String projectType; //类型 1.工程咨询 2.造价审核
|
|
|
+ private String constructionUnit; //施工单位
|
|
|
+ private String constructionLinkman; //施工方联系人
|
|
|
private List<WorkClientAttachment> workAttachments = Lists.newArrayList();
|
|
|
|
|
|
private List<ProjectReportData> projectReportData = Lists.newArrayList();
|
|
@@ -683,4 +685,20 @@ public class ProjectRecords extends ActEntity<ProjectRecords> {
|
|
|
public void setProjectType(String projectType) {
|
|
|
this.projectType = projectType;
|
|
|
}
|
|
|
+
|
|
|
+ public String getConstructionUnit() {
|
|
|
+ return constructionUnit;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setConstructionUnit(String constructionUnit) {
|
|
|
+ this.constructionUnit = constructionUnit;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getConstructionLinkman() {
|
|
|
+ return constructionLinkman;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setConstructionLinkman(String constructionLinkman) {
|
|
|
+ this.constructionLinkman = constructionLinkman;
|
|
|
+ }
|
|
|
}
|