|
@@ -0,0 +1,768 @@
|
|
|
+package com.jeeplus.finance.projectReportArchive.service.dto;
|
|
|
+
|
|
|
+import cn.afterturn.easypoi.excel.annotation.Excel;
|
|
|
+import com.alibaba.excel.annotation.ExcelProperty;
|
|
|
+import com.alibaba.excel.annotation.write.style.HeadFontStyle;
|
|
|
+import com.alibaba.excel.annotation.write.style.HeadRowHeight;
|
|
|
+import com.alibaba.excel.annotation.write.style.HeadStyle;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
+import com.jeeplus.core.service.dto.BaseDTO;
|
|
|
+import com.jeeplus.finance.projectRecords.service.dto.CwProjectRecordsDTO;
|
|
|
+import lombok.Data;
|
|
|
+import org.springframework.format.annotation.DateTimeFormat;
|
|
|
+
|
|
|
+import java.util.Date;
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 财务-项目报告归档-项目归档
|
|
|
+ */
|
|
|
+@Data
|
|
|
+//@HeadRowHeight(30) // 表头高度(单位是磅)
|
|
|
+public class CwProjectReportArchiveExportDTO extends BaseDTO {
|
|
|
+
|
|
|
+ @Excel(name = "序号", orderNum = "0") // orderNum 控制列顺序
|
|
|
+ private Integer index;
|
|
|
+ /**
|
|
|
+ * 业务类型
|
|
|
+ */
|
|
|
+ @ExcelProperty(value = "委托项目类型")
|
|
|
+ @Excel(name = "委托项目类型",width = 25,orderNum = "1")
|
|
|
+ private String businessType;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 项目创建人
|
|
|
+ */
|
|
|
+ @Excel(name = "项目负责人",width = 25,orderNum = "2")
|
|
|
+ private String projectCreateName;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 报告文号
|
|
|
+ */
|
|
|
+ @Excel(name = "报告文号",width = 25,orderNum = "3")
|
|
|
+ private String reportNo;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 项目名称
|
|
|
+ */
|
|
|
+ @Excel(name = "项目名称",width = 25,orderNum = "4")
|
|
|
+ private String projectName;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 报告日期
|
|
|
+ */
|
|
|
+ @DateTimeFormat(pattern = "yyyy-MM-dd")
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
+ @Excel(name = "报告日期",exportFormat = "yyyy/MM/dd",width = 25,orderNum = "5")
|
|
|
+ private Date reportDate;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 二级复核
|
|
|
+ */
|
|
|
+ @Excel(name = "二级复核",width = 25,orderNum = "6")
|
|
|
+ private String secondAuditName;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 交接日期
|
|
|
+ */
|
|
|
+ //@Excel(name = "交接日期",exportFormat = "yyyy/MM/dd",width = 25,orderNum = "7")
|
|
|
+ //private String handoverDate;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 归档时间
|
|
|
+ */
|
|
|
+ @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @Excel(name = "归档时间",exportFormat = "yyyy/MM/dd",width = 25,orderNum = "7")
|
|
|
+ private Date auditDate;
|
|
|
+ /**
|
|
|
+ * 签字注师1
|
|
|
+ */
|
|
|
+ @Excel(name = "签字注师1",width = 25,orderNum = "8")
|
|
|
+ private String signatureAnnotator1Name;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 签字注师2
|
|
|
+ */
|
|
|
+ @Excel(name = "签字注师2",width = 25,orderNum = "9")
|
|
|
+ private String signatureAnnotator2Name;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 审核备注
|
|
|
+ */
|
|
|
+ @Excel(name = "备注",width = 25,orderNum = "10")
|
|
|
+ private String approveRemarks;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 合同
|
|
|
+ */
|
|
|
+ @Excel(name = "合同",width = 25,orderNum = "11")
|
|
|
+ private String contract;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 审定金额(不含税/元)
|
|
|
+ */
|
|
|
+ @Excel(name = "审定金额(不含税/元)",width = 25,orderNum = "12")
|
|
|
+ private String approvedNoIncludingTax;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 审定金额(含税/元)
|
|
|
+ */
|
|
|
+ @Excel(name = "审定金额(含税/元)",width = 25,orderNum = "13")
|
|
|
+ private String approvedIncludingTax;
|
|
|
+
|
|
|
+
|
|
|
+ private String taskBorrowId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 借用状态
|
|
|
+ */
|
|
|
+ private String borrowType;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 借用人id
|
|
|
+ */
|
|
|
+ private String borrowUserId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 借用流程id
|
|
|
+ */
|
|
|
+ private String procInsId2;
|
|
|
+
|
|
|
+ public static final String BIZ_CODE = "15";
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 项目id
|
|
|
+ */
|
|
|
+ private String projectId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 档案名称
|
|
|
+ */
|
|
|
+// @Excel(name = "档案名称",width = 25,orderNum = "0")
|
|
|
+ private String name;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 被审计单位
|
|
|
+ */
|
|
|
+ private String auditedUnits;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 报告册数
|
|
|
+ */
|
|
|
+ private String reportNum;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 底稿册数
|
|
|
+ */
|
|
|
+ private String papersNum;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 档案年度
|
|
|
+ */
|
|
|
+ private String year;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 案卷号
|
|
|
+ */
|
|
|
+ private String number;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 确认案卷号
|
|
|
+ */
|
|
|
+ private String isNumber;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 备注信息
|
|
|
+ */
|
|
|
+ private String remarks;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 原审定金额(不含税/元)
|
|
|
+ */
|
|
|
+ private String approvedNoIncludingTaxBak;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 原审定金额(含税/元)
|
|
|
+ */
|
|
|
+ private String approvedIncludingTaxBak;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 合同编号
|
|
|
+ */
|
|
|
+ private String contractNo;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 委托方
|
|
|
+ */
|
|
|
+ private String clientContacts;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 合同金额
|
|
|
+ */
|
|
|
+ private String contractAmount;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 合同创建人
|
|
|
+ */
|
|
|
+ private String contractCreateName;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 案卷号
|
|
|
+ */
|
|
|
+ private String filedNo;
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 流程id
|
|
|
+ */
|
|
|
+ private String procInsId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 流程信息
|
|
|
+ */
|
|
|
+ private String processDefinitionId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 状态
|
|
|
+ */
|
|
|
+ private String status;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 项目信息
|
|
|
+ */
|
|
|
+ private CwProjectRecordsDTO cwProjectRecordsDTO;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 其他附件
|
|
|
+ */
|
|
|
+ private List<WorkAttachmentArchiveDto> WorkAttachmentDtoList;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 审计报告
|
|
|
+ */
|
|
|
+ private List<CwProjectReportArchiveReportDTO> cwProjectReportArchiveReportDTOList;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 被审计单位名称
|
|
|
+ */
|
|
|
+ private String auditedUnitsName;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 归档时间区间
|
|
|
+ */
|
|
|
+ private String[] auditDates;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 创建时间区间
|
|
|
+ */
|
|
|
+ private String[] createDates;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 档案号
|
|
|
+ */
|
|
|
+ private String fileNumber;
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 项目编号
|
|
|
+ */
|
|
|
+ private String projectNumber;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 项目经理
|
|
|
+ */
|
|
|
+ private String projectMasterName;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 创建人姓名
|
|
|
+ */
|
|
|
+ private String createName;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 创建时间
|
|
|
+ */
|
|
|
+ private String createDateT;
|
|
|
+
|
|
|
+ private Date createDate;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 报告id
|
|
|
+ */
|
|
|
+ private String reportId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 审计意见
|
|
|
+ */
|
|
|
+ private String reportRemarks;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 报告主办人
|
|
|
+ */
|
|
|
+ private String reportCreateName;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 归档状态
|
|
|
+ */
|
|
|
+ private String archiveSta;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 报告到归档时间差(天数)
|
|
|
+ */
|
|
|
+ private Integer archiveDay;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 报告时间区间
|
|
|
+ */
|
|
|
+ private String[] reportDates;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 罚款金额
|
|
|
+ */
|
|
|
+ private String fineMoney;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 超期天数
|
|
|
+ */
|
|
|
+ private String overDueDay;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 逾期天数(天数)
|
|
|
+ */
|
|
|
+ private String overdueDay;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 数据审核人
|
|
|
+ */
|
|
|
+ private List<String> auditUserIds;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 审计收费
|
|
|
+ */
|
|
|
+ private String auditMoney;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 关联的报告号
|
|
|
+ */
|
|
|
+ private String connectReport;
|
|
|
+ /**
|
|
|
+ * 关联的报告号id
|
|
|
+ */
|
|
|
+ private String connectReportId;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 报告复核流程id
|
|
|
+ */
|
|
|
+ private String cprrProcInsId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 报告复核流程id
|
|
|
+ */
|
|
|
+ private String cprrProcDefId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 流程发起人姓名
|
|
|
+ */
|
|
|
+ private String userName;
|
|
|
+
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ public String getTaskBorrowId() {
|
|
|
+ return taskBorrowId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTaskBorrowId(String taskBorrowId) {
|
|
|
+ this.taskBorrowId = taskBorrowId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getProcInsId2() {
|
|
|
+ return procInsId2;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setProcInsId2(String procInsId2) {
|
|
|
+ this.procInsId2 = procInsId2;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getBorrowType() {
|
|
|
+ return borrowType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setBorrowType(String borrowType) {
|
|
|
+ this.borrowType = borrowType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getBorrowUserId() {
|
|
|
+ return borrowUserId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setBorrowUserId(String borrowUserId) {
|
|
|
+ this.borrowUserId = borrowUserId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getRemarks() {
|
|
|
+ return remarks;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRemarks(String remarks) {
|
|
|
+ this.remarks = remarks;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getProjectId() {
|
|
|
+ return projectId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setProjectId(String projectId) {
|
|
|
+ this.projectId = projectId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getName() {
|
|
|
+ return name;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setName(String name) {
|
|
|
+ this.name = name;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getAuditedUnits() {
|
|
|
+ return auditedUnits;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAuditedUnits(String auditedUnits) {
|
|
|
+ this.auditedUnits = auditedUnits;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getReportNum() {
|
|
|
+ return reportNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setReportNum(String reportNum) {
|
|
|
+ this.reportNum = reportNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPapersNum() {
|
|
|
+ return papersNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPapersNum(String papersNum) {
|
|
|
+ this.papersNum = papersNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getYear() {
|
|
|
+ return year;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setYear(String year) {
|
|
|
+ this.year = year;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getNumber() {
|
|
|
+ return number;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setNumber(String number) {
|
|
|
+ this.number = number;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getIsNumber() {
|
|
|
+ return isNumber;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setIsNumber(String isNumber) {
|
|
|
+ this.isNumber = isNumber;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getApproveRemarks() {
|
|
|
+ return approveRemarks;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setApproveRemarks(String approveRemarks) {
|
|
|
+ this.approveRemarks = approveRemarks;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ public Date getAuditDate() {
|
|
|
+ return auditDate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAuditDate(Date auditDate) {
|
|
|
+ this.auditDate = auditDate;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public String getProcInsId() {
|
|
|
+ return procInsId;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void setProcInsId(String procInsId) {
|
|
|
+ this.procInsId = procInsId;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public String getProcessDefinitionId() {
|
|
|
+ return processDefinitionId;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void setProcessDefinitionId(String processDefinitionId) {
|
|
|
+ this.processDefinitionId = processDefinitionId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getStatus() {
|
|
|
+ return status;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStatus(String status) {
|
|
|
+ this.status = status;
|
|
|
+ }
|
|
|
+
|
|
|
+ public CwProjectRecordsDTO getCwProjectRecordsDTO() {
|
|
|
+ return cwProjectRecordsDTO;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCwProjectRecordsDTO(CwProjectRecordsDTO cwProjectRecordsDTO) {
|
|
|
+ this.cwProjectRecordsDTO = cwProjectRecordsDTO;
|
|
|
+ }
|
|
|
+
|
|
|
+ public List<WorkAttachmentArchiveDto> getWorkAttachmentDtoList() {
|
|
|
+ return WorkAttachmentDtoList;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setWorkAttachmentDtoList(List<WorkAttachmentArchiveDto> workAttachmentDtoList) {
|
|
|
+ WorkAttachmentDtoList = workAttachmentDtoList;
|
|
|
+ }
|
|
|
+
|
|
|
+ public List<CwProjectReportArchiveReportDTO> getCwProjectReportArchiveReportDTOList() {
|
|
|
+ return cwProjectReportArchiveReportDTOList;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCwProjectReportArchiveReportDTOList(List<CwProjectReportArchiveReportDTO> cwProjectReportArchiveReportDTOList) {
|
|
|
+ this.cwProjectReportArchiveReportDTOList = cwProjectReportArchiveReportDTOList;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getAuditedUnitsName() {
|
|
|
+ return auditedUnitsName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAuditedUnitsName(String auditedUnitsName) {
|
|
|
+ this.auditedUnitsName = auditedUnitsName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String[] getAuditDates() {
|
|
|
+ return auditDates;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAuditDates(String[] auditDates) {
|
|
|
+ this.auditDates = auditDates;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String[] getCreateDates() {
|
|
|
+ return createDates;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreateDates(String[] createDates) {
|
|
|
+ this.createDates = createDates;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getReportNo() {
|
|
|
+ return reportNo;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setReportNo(String reportNo) {
|
|
|
+ this.reportNo = reportNo;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getFileNumber() {
|
|
|
+ return fileNumber;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFileNumber(String fileNumber) {
|
|
|
+ this.fileNumber = fileNumber;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getProjectName() {
|
|
|
+ return projectName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setProjectName(String projectName) {
|
|
|
+ this.projectName = projectName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getProjectMasterName() {
|
|
|
+ return projectMasterName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setProjectMasterName(String projectMasterName) {
|
|
|
+ this.projectMasterName = projectMasterName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCreateName() {
|
|
|
+ return createName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreateName(String createName) {
|
|
|
+ this.createName = createName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCreateDateT() {
|
|
|
+ return createDateT;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreateDateT(String createDateT) {
|
|
|
+ this.createDateT = createDateT;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getReportId() {
|
|
|
+ return reportId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setReportId(String reportId) {
|
|
|
+ this.reportId = reportId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getReportRemarks() {
|
|
|
+ return reportRemarks;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setReportRemarks(String reportRemarks) {
|
|
|
+ this.reportRemarks = reportRemarks;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Date getReportDate() {
|
|
|
+ return reportDate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setReportDate(Date reportDate) {
|
|
|
+ this.reportDate = reportDate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getReportCreateName() {
|
|
|
+ return reportCreateName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setReportCreateName(String reportCreateName) {
|
|
|
+ this.reportCreateName = reportCreateName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getSignatureAnnotator1Name() {
|
|
|
+ return signatureAnnotator1Name;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSignatureAnnotator1Name(String signatureAnnotator1Name) {
|
|
|
+ this.signatureAnnotator1Name = signatureAnnotator1Name;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getSignatureAnnotator2Name() {
|
|
|
+ return signatureAnnotator2Name;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSignatureAnnotator2Name(String signatureAnnotator2Name) {
|
|
|
+ this.signatureAnnotator2Name = signatureAnnotator2Name;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getArchiveSta() {
|
|
|
+ return archiveSta;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setArchiveSta(String archiveSta) {
|
|
|
+ this.archiveSta = archiveSta;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getArchiveDay() {
|
|
|
+ return archiveDay;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setArchiveDay(Integer archiveDay) {
|
|
|
+ this.archiveDay = archiveDay;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String[] getReportDates() {
|
|
|
+ return reportDates;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setReportDates(String[] reportDates) {
|
|
|
+ this.reportDates = reportDates;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getFineMoney() {
|
|
|
+ return fineMoney;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFineMoney(String fineMoney) {
|
|
|
+ this.fineMoney = fineMoney;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getOverDueDay() {
|
|
|
+ return overDueDay;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOverDueDay(String overDueDay) {
|
|
|
+ this.overDueDay = overDueDay;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getOverdueDay() {
|
|
|
+ return overdueDay;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOverdueDay(String overdueDay) {
|
|
|
+ this.overdueDay = overdueDay;
|
|
|
+ }
|
|
|
+
|
|
|
+ public static long getSerialVersionUID() {
|
|
|
+ return serialVersionUID;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAuditUserIds(List<String> auditUserIds) {
|
|
|
+ this.auditUserIds = auditUserIds;
|
|
|
+ }
|
|
|
+
|
|
|
+ public List<String> getAuditUserIds() {
|
|
|
+ return auditUserIds;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCprrProcInsId() {
|
|
|
+ return cprrProcInsId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCprrProcInsId(String cprrProcInsId) {
|
|
|
+ this.cprrProcInsId = cprrProcInsId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCprrProcDefId() {
|
|
|
+ return cprrProcDefId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCprrProcDefId(String cprrProcDefId) {
|
|
|
+ this.cprrProcDefId = cprrProcDefId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getConnectReport() {
|
|
|
+ return connectReport;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setConnectReport(String connectReport) {
|
|
|
+ this.connectReport = connectReport;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getUserName() {
|
|
|
+ return userName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUserName(String userName) {
|
|
|
+ this.userName = userName;
|
|
|
+ }
|
|
|
+}
|