fix: 项目导出字段调整

This commit is contained in:
caiyuchao
2025-08-28 10:33:40 +08:00
parent 87dfcb07d1
commit 0f000fb533

View File

@@ -27,6 +27,10 @@ public class ProjectRespVO implements VO {
@Trans(type = TransType.SIMPLE, target = CustomerDO.class, fields = "name", ref = "customerName")
private Long customerId;
@Schema(description = "客户名称")
@ExcelProperty("客户名称")
private String customerName;
@Schema(description = "项目名称", requiredMode = Schema.RequiredMode.REQUIRED, example = "aa")
@ExcelProperty("项目名称")
private String name;
@@ -35,10 +39,6 @@ public class ProjectRespVO implements VO {
@ExcelProperty("项目编号")
private Long code;
@Schema(description = "客户名称")
@ExcelProperty("客户名称")
private String customerName;
@Schema(description = "项目开始时间")
@ExcelProperty("项目开始时间")
private LocalDateTime startTime;
@@ -120,7 +120,7 @@ public class ProjectRespVO implements VO {
private String remark;
@Schema(description = "评论数")
@ExcelProperty("评论")
@ExcelProperty("进展记录")
private Integer commentNum;
@Schema(description = "license申请数")