|
@@ -1,5 +1,6 @@
|
|
package com.jeeplus.test.program.configuration.projectList.domain;
|
|
package com.jeeplus.test.program.configuration.projectList.domain;
|
|
|
|
|
|
|
|
+import cn.afterturn.easypoi.excel.annotation.Excel;
|
|
import com.baomidou.mybatisplus.annotation.*;
|
|
import com.baomidou.mybatisplus.annotation.*;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import com.jeeplus.core.domain.BaseEntity;
|
|
import com.jeeplus.core.domain.BaseEntity;
|
|
@@ -26,6 +27,7 @@ public class ProgramProjectListInfo {
|
|
*/
|
|
*/
|
|
@TableField(fill = FieldFill.INSERT)
|
|
@TableField(fill = FieldFill.INSERT)
|
|
@JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8")
|
|
@JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8")
|
|
|
|
+ @Excel(name = "创建时间", width = 30, orderNum = "6")
|
|
private Date createDate;
|
|
private Date createDate;
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -59,6 +61,7 @@ public class ProgramProjectListInfo {
|
|
/**
|
|
/**
|
|
* 合同名称
|
|
* 合同名称
|
|
*/
|
|
*/
|
|
|
|
+ @Excel(name = "合同名称", width = 30, orderNum = "3")
|
|
@Query(tableColumn = "a.contract_name")
|
|
@Query(tableColumn = "a.contract_name")
|
|
private String contractName;
|
|
private String contractName;
|
|
|
|
|
|
@@ -67,6 +70,7 @@ public class ProgramProjectListInfo {
|
|
*/
|
|
*/
|
|
private String client;
|
|
private String client;
|
|
|
|
|
|
|
|
+ @Excel(name = "委托方", width = 30, orderNum = "5")
|
|
@Query(tableColumn = "a.client_name")
|
|
@Query(tableColumn = "a.client_name")
|
|
private String clientName;
|
|
private String clientName;
|
|
|
|
|
|
@@ -77,17 +81,21 @@ public class ProgramProjectListInfo {
|
|
/**
|
|
/**
|
|
* 项目名称
|
|
* 项目名称
|
|
*/
|
|
*/
|
|
|
|
+ @Excel(name = "项目名称", width = 30, orderNum = "1")
|
|
@Query(tableColumn = "a.name")
|
|
@Query(tableColumn = "a.name")
|
|
private String name;
|
|
private String name;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 项目编号
|
|
* 项目编号
|
|
*/
|
|
*/
|
|
|
|
+ @Excel(name = "项目编号", width = 20, orderNum = "2")
|
|
@Query(tableColumn = "a.no")
|
|
@Query(tableColumn = "a.no")
|
|
private String no;
|
|
private String no;
|
|
|
|
|
|
private String projectType;
|
|
private String projectType;
|
|
|
|
|
|
|
|
+ private String approvalNo;
|
|
|
|
+
|
|
private String company;
|
|
private String company;
|
|
|
|
|
|
private String projectMould;
|
|
private String projectMould;
|
|
@@ -107,9 +115,12 @@ public class ProgramProjectListInfo {
|
|
/**
|
|
/**
|
|
* 项目经理(项目责任人)
|
|
* 项目经理(项目责任人)
|
|
*/
|
|
*/
|
|
- @Query(tableColumn = "a.projectManager")
|
|
|
|
private String projectManager;
|
|
private String projectManager;
|
|
|
|
|
|
|
|
+ @Excel(name = "项目经理", width = 20, orderNum = "4")
|
|
|
|
+ @Query(tableColumn = "c.name")
|
|
|
|
+ private String projectManagerName;
|
|
|
|
+
|
|
private String reportType;
|
|
private String reportType;
|
|
|
|
|
|
private String industry;
|
|
private String industry;
|
|
@@ -179,6 +190,7 @@ public class ProgramProjectListInfo {
|
|
/**
|
|
/**
|
|
* 状态
|
|
* 状态
|
|
*/
|
|
*/
|
|
|
|
+ @Excel(name = "状态", width = 20, orderNum = "7")
|
|
@Query(tableColumn = "a.status")
|
|
@Query(tableColumn = "a.status")
|
|
private String status;
|
|
private String status;
|
|
|
|
|