|
@@ -2,6 +2,7 @@ package com.migao.entity.vo.res;
|
|
|
|
|
|
import com.alibaba.excel.annotation.ExcelIgnore;
|
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
|
|
+import com.migao.util.LocalDateTimeConverter;
|
|
|
import lombok.AllArgsConstructor;
|
|
|
import lombok.Builder;
|
|
|
import lombok.Data;
|
|
@@ -25,26 +26,18 @@ public class ProjectQueryRes {
|
|
|
@ApiModelProperty(value = "主键")
|
|
|
private Integer id;
|
|
|
|
|
|
- @ExcelProperty(value = "资本性(万元)")
|
|
|
- @ApiModelProperty(value = "资本性(万元)")
|
|
|
- private String capital;
|
|
|
+ @ExcelProperty(value = "项目名称")
|
|
|
+ @ApiModelProperty(value = "项目名称")
|
|
|
+ private String name;
|
|
|
|
|
|
@ExcelProperty(value = "项目内容")
|
|
|
@ApiModelProperty(value = "项目内容")
|
|
|
private String content;
|
|
|
|
|
|
- @ExcelProperty(value = "成本性(万元)")
|
|
|
- @ApiModelProperty(value = "成本性(万元)")
|
|
|
- private String cost;
|
|
|
-
|
|
|
@ExcelProperty(value = "重要等级")
|
|
|
@ApiModelProperty(value = "重要等级")
|
|
|
private String level;
|
|
|
|
|
|
- @ExcelProperty(value = "项目名称")
|
|
|
- @ApiModelProperty(value = "项目名称")
|
|
|
- private String name;
|
|
|
-
|
|
|
@ExcelProperty(value = "可研情况")
|
|
|
@ApiModelProperty(value = "可研情况")
|
|
|
private String progress;
|
|
@@ -65,6 +58,14 @@ public class ProjectQueryRes {
|
|
|
@ApiModelProperty(value = "总投资(万元)")
|
|
|
private String totalInvestment;
|
|
|
|
|
|
+ @ExcelProperty(value = "资本性(万元)")
|
|
|
+ @ApiModelProperty(value = "资本性(万元)")
|
|
|
+ private String capital;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "成本性(万元)")
|
|
|
+ @ApiModelProperty(value = "成本性(万元)")
|
|
|
+ private String cost;
|
|
|
+
|
|
|
@ExcelProperty(value = "二级分类")
|
|
|
@ApiModelProperty(value = "二级分类")
|
|
|
private String twoClassify;
|
|
@@ -82,8 +83,8 @@ public class ProjectQueryRes {
|
|
|
private String reserveStatus;
|
|
|
|
|
|
|
|
|
- @ExcelProperty(value = "创建时间")
|
|
|
+ @ExcelProperty(value = "创建时间", converter = LocalDateTimeConverter.class)
|
|
|
@ApiModelProperty(value = "创建时间")
|
|
|
- private LocalDateTime createTime;
|
|
|
+ private LocalDateTime createTime;
|
|
|
|
|
|
}
|