|
@@ -1,13 +1,16 @@
|
|
|
package com.jeeplus.finance.projectRecords.service.dto;
|
|
|
|
|
|
import cn.afterturn.easypoi.excel.annotation.Excel;
|
|
|
+import cn.afterturn.easypoi.excel.annotation.ExcelIgnore;
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import com.jeeplus.core.service.dto.BaseDTO;
|
|
|
+import com.jeeplus.finance.workClientInfo.service.dto.CwWorkClientBaseDTO;
|
|
|
import lombok.Data;
|
|
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
|
|
|
|
import javax.validation.constraints.NotNull;
|
|
|
import java.util.Date;
|
|
|
+import java.util.List;
|
|
|
|
|
|
/**
|
|
|
* @author: 徐滕
|
|
@@ -37,7 +40,7 @@ public class CwProjectRecordsImportDTO extends BaseDTO {
|
|
|
/**
|
|
|
* 项目规模
|
|
|
*/
|
|
|
- @Excel(name = "*项目规模",width = 25)
|
|
|
+ @Excel(name = "*项目规模(元)",width = 25)
|
|
|
@NotNull(message="项目规模不可为空")
|
|
|
private String projectMoney;
|
|
|
|
|
@@ -65,7 +68,7 @@ public class CwProjectRecordsImportDTO extends BaseDTO {
|
|
|
/**
|
|
|
* 项目计划开始时间
|
|
|
*/
|
|
|
- @Excel(name = "*项目计划开始时间",width = 50)
|
|
|
+ @Excel(name = "*项目预计开始时间",width = 50)
|
|
|
@NotNull(message="项目计划开始时间不可为空")
|
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
@@ -74,7 +77,7 @@ public class CwProjectRecordsImportDTO extends BaseDTO {
|
|
|
/**
|
|
|
* 项目计划结束时间
|
|
|
*/
|
|
|
- @Excel(name = "*项目计划结束时间",width = 50)
|
|
|
+ @Excel(name = "*项目预计结束时间",width = 50)
|
|
|
@NotNull(message="项目计划结束时间不可为空")
|
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
@@ -89,34 +92,33 @@ public class CwProjectRecordsImportDTO extends BaseDTO {
|
|
|
/**
|
|
|
* 项目经理1
|
|
|
*/
|
|
|
- @Excel(name = "*项目经理1",width = 50)
|
|
|
+ @Excel(name = "项目经理1",width = 50)
|
|
|
private String projectMasterId;
|
|
|
|
|
|
/**
|
|
|
* 项目经理2
|
|
|
*/
|
|
|
- @Excel(name = "*项目经理2",width = 50)
|
|
|
+ @Excel(name = "项目经理2",width = 50)
|
|
|
private String realHeader;
|
|
|
|
|
|
/**
|
|
|
* 客户姓名
|
|
|
*/
|
|
|
- @Excel(name = "*客户姓名",width = 50)
|
|
|
+ @Excel(name = "*客户联系人-姓名",width = 50)
|
|
|
@NotNull(message="客户姓名不可为空")
|
|
|
private String cwProjectClientName;
|
|
|
|
|
|
/**
|
|
|
* 客户部门
|
|
|
*/
|
|
|
- @Excel(name = "*客户部门",width = 50)
|
|
|
+ @Excel(name = "*客户联系人-部门",width = 50)
|
|
|
@NotNull(message="客户部门不可为空")
|
|
|
private String cwProjectClientOffice;
|
|
|
|
|
|
/**
|
|
|
* 客户手机号
|
|
|
*/
|
|
|
- @Excel(name = "*客户手机号",width = 50)
|
|
|
- @NotNull(message="客户手机号不可为空")
|
|
|
+ @Excel(name = "*客户联系人-联系方式1",width = 50)
|
|
|
+ @NotNull(message="客户联系方式不可为空")
|
|
|
private String cwProjectClientPhone;
|
|
|
-
|
|
|
}
|