|
@@ -25,7 +25,7 @@ import java.util.Map;
|
|
* @version 2018-06-22
|
|
* @version 2018-06-22
|
|
*/
|
|
*/
|
|
public class ProjectReportRecord extends ActEntity<ProjectReportRecord> {
|
|
public class ProjectReportRecord extends ActEntity<ProjectReportRecord> {
|
|
-
|
|
|
|
|
|
+
|
|
private static final long serialVersionUID = 1L;
|
|
private static final long serialVersionUID = 1L;
|
|
private ProjectReportData report; // 报告id
|
|
private ProjectReportData report; // 报告id
|
|
private String companyId; // 公司id
|
|
private String companyId; // 公司id
|
|
@@ -58,6 +58,8 @@ public class ProjectReportRecord extends ActEntity<ProjectReportRecord> {
|
|
private List<ProjectTemplateInfo> fileAttachmentList; //报告文件
|
|
private List<ProjectTemplateInfo> fileAttachmentList; //报告文件
|
|
private List<ProjectTemplateInfo> fileGistdataList; //依据性文件
|
|
private List<ProjectTemplateInfo> fileGistdataList; //依据性文件
|
|
private List<ProjectTemplateInfo> fileOtherList; //其他文件
|
|
private List<ProjectTemplateInfo> fileOtherList; //其他文件
|
|
|
|
+ private ProjectReportData projectReportData; // 报告信息(仅作为展示用)
|
|
|
|
+ private List<String> chargeCriterionList; //合同收费标准
|
|
|
|
|
|
private Integer type;//(1:ProjectReportRecord 2:RuralProjectReportRecord)
|
|
private Integer type;//(1:ProjectReportRecord 2:RuralProjectReportRecord)
|
|
|
|
|
|
@@ -113,7 +115,7 @@ public class ProjectReportRecord extends ActEntity<ProjectReportRecord> {
|
|
public void setCompanyId(String companyId) {
|
|
public void setCompanyId(String companyId) {
|
|
this.companyId = companyId;
|
|
this.companyId = companyId;
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
@ExcelField(title="部门id", align=2, sort=9)
|
|
@ExcelField(title="部门id", align=2, sort=9)
|
|
public String getOfficeId() {
|
|
public String getOfficeId() {
|
|
return officeId;
|
|
return officeId;
|
|
@@ -122,7 +124,7 @@ public class ProjectReportRecord extends ActEntity<ProjectReportRecord> {
|
|
public void setOfficeId(String officeId) {
|
|
public void setOfficeId(String officeId) {
|
|
this.officeId = officeId;
|
|
this.officeId = officeId;
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
@ExcelField(title="归档申请编号", align=2, sort=10)
|
|
@ExcelField(title="归档申请编号", align=2, sort=10)
|
|
public String getRecordNum() {
|
|
public String getRecordNum() {
|
|
return recordNum;
|
|
return recordNum;
|
|
@@ -131,7 +133,7 @@ public class ProjectReportRecord extends ActEntity<ProjectReportRecord> {
|
|
public void setRecordNum(String recordNum) {
|
|
public void setRecordNum(String recordNum) {
|
|
this.recordNum = recordNum;
|
|
this.recordNum = recordNum;
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
@ExcelField(title="档案号", align=2, sort=11)
|
|
@ExcelField(title="档案号", align=2, sort=11)
|
|
public String getFileNum() {
|
|
public String getFileNum() {
|
|
return fileNum;
|
|
return fileNum;
|
|
@@ -140,7 +142,7 @@ public class ProjectReportRecord extends ActEntity<ProjectReportRecord> {
|
|
public void setFileNum(String fileNum) {
|
|
public void setFileNum(String fileNum) {
|
|
this.fileNum = fileNum;
|
|
this.fileNum = fileNum;
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
@ExcelField(title="档案名称", align=2, sort=12)
|
|
@ExcelField(title="档案名称", align=2, sort=12)
|
|
public String getName() {
|
|
public String getName() {
|
|
return name;
|
|
return name;
|
|
@@ -149,7 +151,7 @@ public class ProjectReportRecord extends ActEntity<ProjectReportRecord> {
|
|
public void setName(String name) {
|
|
public void setName(String name) {
|
|
this.name = name;
|
|
this.name = name;
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
@ExcelField(title="归档日期", align=2, sort=13)
|
|
@ExcelField(title="归档日期", align=2, sort=13)
|
|
public Date getRecordDate() {
|
|
public Date getRecordDate() {
|
|
@@ -159,7 +161,7 @@ public class ProjectReportRecord extends ActEntity<ProjectReportRecord> {
|
|
public void setRecordDate(Date recordDate) {
|
|
public void setRecordDate(Date recordDate) {
|
|
this.recordDate = recordDate;
|
|
this.recordDate = recordDate;
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
@ExcelField(title="归档状态", align=2, sort=14)
|
|
@ExcelField(title="归档状态", align=2, sort=14)
|
|
public String getStatus() {
|
|
public String getStatus() {
|
|
return status;
|
|
return status;
|
|
@@ -168,7 +170,7 @@ public class ProjectReportRecord extends ActEntity<ProjectReportRecord> {
|
|
public void setStatus(String status) {
|
|
public void setStatus(String status) {
|
|
this.status = status;
|
|
this.status = status;
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
@ExcelField(title="流程号", align=2, sort=15)
|
|
@ExcelField(title="流程号", align=2, sort=15)
|
|
public String getProcessInstanceId() {
|
|
public String getProcessInstanceId() {
|
|
return processInstanceId;
|
|
return processInstanceId;
|
|
@@ -386,4 +388,20 @@ public class ProjectReportRecord extends ActEntity<ProjectReportRecord> {
|
|
public void setHoldFlag(String holdFlag) {
|
|
public void setHoldFlag(String holdFlag) {
|
|
this.holdFlag = holdFlag;
|
|
this.holdFlag = holdFlag;
|
|
}
|
|
}
|
|
-}
|
|
|
|
|
|
+
|
|
|
|
+ public ProjectReportData getProjectReportData() {
|
|
|
|
+ return projectReportData;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setProjectReportData(ProjectReportData projectReportData) {
|
|
|
|
+ this.projectReportData = projectReportData;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public List<String> getChargeCriterionList() {
|
|
|
|
+ return chargeCriterionList;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setChargeCriterionList(List<String> chargeCriterionList) {
|
|
|
|
+ this.chargeCriterionList = chargeCriterionList;
|
|
|
|
+ }
|
|
|
|
+}
|