|
@@ -25,6 +25,19 @@ public class RuralProjectRecordReportInfo extends DataEntity<RuralProjectRecordR
|
|
|
private String projectType; //类型
|
|
|
private Integer endingCount; //结束天数
|
|
|
private List<String> typeList;
|
|
|
+ private String reportedState; //上报状态
|
|
|
+ private String reportedProcessInstanceId; //上报流程号
|
|
|
+ private Integer projectReportRecordStatus; //归档状态
|
|
|
+ private String filingProjectStatus; //批量归档状态
|
|
|
+ private String filingBatch ;//档次批号id
|
|
|
+ private String boxNum; //盒号
|
|
|
+ private String reBoxNum;//确认盒号
|
|
|
+ //归档批次信息
|
|
|
+ private String filingBatchId; //归档批次Id
|
|
|
+ private String filingProcessinstanceId;// 审批流程id
|
|
|
+ private Integer filingStatus;//归档审批状态
|
|
|
+ private String checkStatus; //选查状态
|
|
|
+ private String checkProcessInstanceId;//选查审批流程
|
|
|
|
|
|
@ExcelField(title="年份", align=2, sort=2)
|
|
|
public String getYear() {
|
|
@@ -80,16 +93,44 @@ public class RuralProjectRecordReportInfo extends DataEntity<RuralProjectRecordR
|
|
|
this.officeName = officeName;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title="归档状态", align=2, sort=8)
|
|
|
- public String getRecordStatus() {
|
|
|
- return recordStatus;
|
|
|
+ @ExcelField(title="电子归档", dictType = "archive_state", align=2, sort=8)
|
|
|
+ public Integer getProjectReportRecordStatus() {
|
|
|
+ return projectReportRecordStatus;
|
|
|
}
|
|
|
|
|
|
- public void setRecordStatus(String recordStatus) {
|
|
|
- this.recordStatus = recordStatus;
|
|
|
+ public void setProjectReportRecordStatus(Integer projectReportRecordStatus) {
|
|
|
+ this.projectReportRecordStatus = projectReportRecordStatus;
|
|
|
+ }
|
|
|
+
|
|
|
+ @ExcelField(title="批量归档", dictType = "archive_state", align=2, sort=9)
|
|
|
+ public String getFilingProjectStatus() {
|
|
|
+ return filingProjectStatus;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFilingProjectStatus(String filingProjectStatus) {
|
|
|
+ this.filingProjectStatus = filingProjectStatus;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ @ExcelField(title="上报状态",dictType = "reported_state", align=2, sort=10)
|
|
|
+ public String getReportedState() {
|
|
|
+ return reportedState;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setReportedState(String reportedState) {
|
|
|
+ this.reportedState = reportedState;
|
|
|
+ }
|
|
|
+
|
|
|
+ @ExcelField(title="选查", dictType = "check_status", align=2, sort=11)
|
|
|
+ public String getCheckStatus() {
|
|
|
+ return checkStatus;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCheckStatus(String checkStatus) {
|
|
|
+ this.checkStatus = checkStatus;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title="上报状态", align=2, sort=9)
|
|
|
public String getReportedStatus() {
|
|
|
return reportedStatus;
|
|
|
}
|
|
@@ -98,6 +139,14 @@ public class RuralProjectRecordReportInfo extends DataEntity<RuralProjectRecordR
|
|
|
this.reportedStatus = reportedStatus;
|
|
|
}
|
|
|
|
|
|
+ public String getRecordStatus() {
|
|
|
+ return recordStatus;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRecordStatus(String recordStatus) {
|
|
|
+ this.recordStatus = recordStatus;
|
|
|
+ }
|
|
|
+
|
|
|
public String getProjectType() {
|
|
|
return projectType;
|
|
|
}
|
|
@@ -129,4 +178,70 @@ public class RuralProjectRecordReportInfo extends DataEntity<RuralProjectRecordR
|
|
|
public void setTypeList(List<String> typeList) {
|
|
|
this.typeList = typeList;
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
+ public String getReportedProcessInstanceId() {
|
|
|
+ return reportedProcessInstanceId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setReportedProcessInstanceId(String reportedProcessInstanceId) {
|
|
|
+ this.reportedProcessInstanceId = reportedProcessInstanceId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getFilingBatch() {
|
|
|
+ return filingBatch;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFilingBatch(String filingBatch) {
|
|
|
+ this.filingBatch = filingBatch;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getBoxNum() {
|
|
|
+ return boxNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setBoxNum(String boxNum) {
|
|
|
+ this.boxNum = boxNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getReBoxNum() {
|
|
|
+ return reBoxNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setReBoxNum(String reBoxNum) {
|
|
|
+ this.reBoxNum = reBoxNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getFilingBatchId() {
|
|
|
+ return filingBatchId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFilingBatchId(String filingBatchId) {
|
|
|
+ this.filingBatchId = filingBatchId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getFilingProcessinstanceId() {
|
|
|
+ return filingProcessinstanceId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFilingProcessinstanceId(String filingProcessinstanceId) {
|
|
|
+ this.filingProcessinstanceId = filingProcessinstanceId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getFilingStatus() {
|
|
|
+ return filingStatus;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFilingStatus(Integer filingStatus) {
|
|
|
+ this.filingStatus = filingStatus;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ public String getCheckProcessInstanceId() {
|
|
|
+ return checkProcessInstanceId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCheckProcessInstanceId(String checkProcessInstanceId) {
|
|
|
+ this.checkProcessInstanceId = checkProcessInstanceId;
|
|
|
+ }
|
|
|
}
|