diff --git a/src/main/java/com/gxwebsoft/pwl/entity/PwlProject.java b/src/main/java/com/gxwebsoft/pwl/entity/PwlProject.java index 1b946f4..0c6cda2 100644 --- a/src/main/java/com/gxwebsoft/pwl/entity/PwlProject.java +++ b/src/main/java/com/gxwebsoft/pwl/entity/PwlProject.java @@ -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;