优化项目详情页-添加审计开始、结束时间

This commit is contained in:
2026-05-11 09:12:04 +08:00
parent 78069cb5e7
commit 035bf8499c

View File

@@ -38,6 +38,14 @@ public class PwlProject implements Serializable {
@Schema(description = "项目名称")
private String name;
@Schema(description = "审计开始时间")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private LocalDateTime auditStartTime;
@Schema(description = "审计结束时间")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private LocalDateTime auditEndTime;
@Schema(description = "项目标识")
private String code;