|
@@ -31,14 +31,14 @@ public class InformationReporting implements Serializable {
|
|
|
/**
|
|
/**
|
|
|
* 姓名
|
|
* 姓名
|
|
|
*/
|
|
*/
|
|
|
- @ExcelProperty("姓名")
|
|
|
|
|
|
|
+ @ExcelProperty(value = "姓名", index = 0)
|
|
|
@ColumnWidth(15)
|
|
@ColumnWidth(15)
|
|
|
private String name;
|
|
private String name;
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 手机号
|
|
* 手机号
|
|
|
*/
|
|
*/
|
|
|
- @ExcelProperty("手机号")
|
|
|
|
|
|
|
+ @ExcelProperty(value = "手机号", index = 1)
|
|
|
@ColumnWidth(15)
|
|
@ColumnWidth(15)
|
|
|
private String phone;
|
|
private String phone;
|
|
|
|
|
|
|
@@ -53,28 +53,28 @@ public class InformationReporting implements Serializable {
|
|
|
/**
|
|
/**
|
|
|
* 单位名称
|
|
* 单位名称
|
|
|
*/
|
|
*/
|
|
|
- @ExcelProperty("单位名称")
|
|
|
|
|
|
|
+ @ExcelProperty(value = "单位名称", index = 2)
|
|
|
@ColumnWidth(15)
|
|
@ColumnWidth(15)
|
|
|
private String company;
|
|
private String company;
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 客户名称
|
|
* 客户名称
|
|
|
*/
|
|
*/
|
|
|
- @ExcelProperty("客户名称")
|
|
|
|
|
|
|
+ @ExcelProperty(value = "客户名称", index = 3)
|
|
|
@ColumnWidth(15)
|
|
@ColumnWidth(15)
|
|
|
private String customerName;
|
|
private String customerName;
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 项目名称
|
|
* 项目名称
|
|
|
*/
|
|
*/
|
|
|
- @ExcelProperty("项目名称")
|
|
|
|
|
|
|
+ @ExcelProperty(value = "项目名称", index = 4)
|
|
|
@ColumnWidth(15)
|
|
@ColumnWidth(15)
|
|
|
private String entryName;
|
|
private String entryName;
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 项目金额
|
|
* 项目金额
|
|
|
*/
|
|
*/
|
|
|
- @ExcelProperty("项目金额")
|
|
|
|
|
|
|
+ @ExcelProperty(value = "项目金额", index = 5)
|
|
|
@ColumnWidth(15)
|
|
@ColumnWidth(15)
|
|
|
private String projectAmount;
|
|
private String projectAmount;
|
|
|
|
|
|
|
@@ -82,27 +82,27 @@ public class InformationReporting implements Serializable {
|
|
|
* 预计投标时间
|
|
* 预计投标时间
|
|
|
*/
|
|
*/
|
|
|
@ColumnWidth(20)
|
|
@ColumnWidth(20)
|
|
|
- @ExcelProperty(value = "预计投标时间")
|
|
|
|
|
|
|
+ @ExcelProperty(value = "预计投标时间", index = 6)
|
|
|
private String tenderTime;
|
|
private String tenderTime;
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 项目基本情况
|
|
* 项目基本情况
|
|
|
*/
|
|
*/
|
|
|
- @ExcelProperty("项目基本情况")
|
|
|
|
|
|
|
+ @ExcelProperty(value = "项目基本情况", index = 10)
|
|
|
@ColumnWidth(35)
|
|
@ColumnWidth(35)
|
|
|
private String content;
|
|
private String content;
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 所属行业
|
|
* 所属行业
|
|
|
*/
|
|
*/
|
|
|
- @ExcelProperty("所属行业")
|
|
|
|
|
|
|
+ @ExcelProperty(value = "所属行业", index = 7)
|
|
|
@ColumnWidth(15)
|
|
@ColumnWidth(15)
|
|
|
private String trade;
|
|
private String trade;
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 产品类型
|
|
* 产品类型
|
|
|
*/
|
|
*/
|
|
|
- @ExcelProperty("产品类型")
|
|
|
|
|
|
|
+ @ExcelProperty(value = "产品类型", index = 8)
|
|
|
@ColumnWidth(20)
|
|
@ColumnWidth(20)
|
|
|
private String product;
|
|
private String product;
|
|
|
|
|
|
|
@@ -111,7 +111,7 @@ public class InformationReporting implements Serializable {
|
|
|
* 提交时间
|
|
* 提交时间
|
|
|
*/
|
|
*/
|
|
|
@ColumnWidth(20)
|
|
@ColumnWidth(20)
|
|
|
- @ExcelProperty(value = "提交时间", converter = LocalDateTimeConverter.class)
|
|
|
|
|
|
|
+ @ExcelProperty(value = "提交时间", converter = LocalDateTimeConverter.class, index = 11)
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
private LocalDateTime reportingTime;
|
|
private LocalDateTime reportingTime;
|
|
|
|
|
|
|
@@ -125,7 +125,7 @@ public class InformationReporting implements Serializable {
|
|
|
/**
|
|
/**
|
|
|
* 项目状态:0已关闭 1进行中
|
|
* 项目状态:0已关闭 1进行中
|
|
|
*/
|
|
*/
|
|
|
- @ExcelProperty(value = "项目状态", converter = StatusConverter.class)
|
|
|
|
|
|
|
+ @ExcelProperty(value = "项目状态", converter = StatusConverter.class, index = 9)
|
|
|
@ColumnWidth(15)
|
|
@ColumnWidth(15)
|
|
|
@Pattern(regexp = "[0-1]", message = "项目状态只能为0或1")
|
|
@Pattern(regexp = "[0-1]", message = "项目状态只能为0或1")
|
|
|
private Integer status;
|
|
private Integer status;
|