|
@@ -1,6 +1,8 @@
|
|
|
package com.jeeplus.finance.reportCancellApply.service.dto;
|
|
|
|
|
|
+import cn.afterturn.easypoi.excel.annotation.Excel;
|
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import com.jeeplus.core.service.dto.BaseDTO;
|
|
|
import com.jeeplus.finance.projectReport.domain.CwProjectReportData;
|
|
|
import lombok.Data;
|
|
@@ -22,31 +24,38 @@ public class ReportInfoDto extends BaseDTO {
|
|
|
/**
|
|
|
* 项目编号
|
|
|
*/
|
|
|
+ @Excel(name = "项目编号",width = 25,orderNum = "2")
|
|
|
private String projectNumber;
|
|
|
|
|
|
/**
|
|
|
* 创建人
|
|
|
*/
|
|
|
+ @Excel(name = "创建人",width = 25,orderNum = "9")
|
|
|
private String userName;
|
|
|
|
|
|
+
|
|
|
/**
|
|
|
* 报告所属部门
|
|
|
*/
|
|
|
+ @Excel(name = "报告所属部门",width = 25,orderNum = "5")
|
|
|
private String departmentName;
|
|
|
|
|
|
/**
|
|
|
* 报告文号
|
|
|
*/
|
|
|
+ @Excel(name = "报告号",width = 25,orderNum = "1")
|
|
|
private String reportNo;
|
|
|
|
|
|
/**
|
|
|
* 项目名称
|
|
|
*/
|
|
|
+ @Excel(name = "项目名称",width = 25,orderNum = "3")
|
|
|
private String projectName;
|
|
|
|
|
|
/**
|
|
|
* 报告主办人
|
|
|
*/
|
|
|
+ @Excel(name = "报告主办人",width = 25,orderNum = "8")
|
|
|
private String reportSponsor;
|
|
|
|
|
|
/**
|
|
@@ -57,6 +66,7 @@ public class ReportInfoDto extends BaseDTO {
|
|
|
/**
|
|
|
* 报告申请单号
|
|
|
*/
|
|
|
+ @Excel(name = "单据编号",width = 25,orderNum = "0")
|
|
|
private String documentNo;
|
|
|
|
|
|
/**
|
|
@@ -67,6 +77,7 @@ public class ReportInfoDto extends BaseDTO {
|
|
|
/**
|
|
|
* 项目经理姓名
|
|
|
*/
|
|
|
+ @Excel(name = "项目经理姓名",width = 25,orderNum = "6")
|
|
|
private String projectMasterName;
|
|
|
|
|
|
/**
|
|
@@ -83,8 +94,18 @@ public class ReportInfoDto extends BaseDTO {
|
|
|
/**
|
|
|
* 状态
|
|
|
*/
|
|
|
+
|
|
|
+ @Excel(name = "状态",width = 25,orderNum = "11",dict = "cw_status")
|
|
|
private String status;
|
|
|
|
|
|
+// @Excel(name = "状态",width = 25,orderNum = "11",dict = "cw_status")
|
|
|
+ private String labelStatus;
|
|
|
+ /**
|
|
|
+ * 创建时间
|
|
|
+ */
|
|
|
+ @Excel(name = "创建时间",exportFormat = "yyyy-MM-dd HH:mm:ss",width = 25,orderNum = "10")
|
|
|
+ private String createDateT;
|
|
|
+
|
|
|
/**
|
|
|
* 流程id
|
|
|
*/
|
|
@@ -125,6 +146,7 @@ public class ReportInfoDto extends BaseDTO {
|
|
|
* 项目经理2name
|
|
|
*/
|
|
|
@TableField(exist = false)
|
|
|
+ @Excel(name = "项目经理2姓名",width = 25,orderNum = "7")
|
|
|
private String projectMaster2Name;
|
|
|
|
|
|
/**
|
|
@@ -141,4 +163,12 @@ public class ReportInfoDto extends BaseDTO {
|
|
|
* 报告详情
|
|
|
*/
|
|
|
private CwProjectReportData reportDetail;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 报告号
|
|
|
+ */
|
|
|
+ @Excel(name = "报告号",width = 25,orderNum = "4")
|
|
|
+ private String projectNo;
|
|
|
+
|
|
|
+
|
|
|
}
|