fuliqi
2025-01-09 15a1b8a6cda205c10323b25578374e20165f3ff6
ycl-pojo/src/main/java/com/ycl/platform/domain/entity/TContract.java
@@ -49,7 +49,7 @@
     * 单位id
     */
    @NotBlank
    private Integer unitId;
    private Long unitId;
    @TableField(exist = false)
    private String unitName;
@@ -63,14 +63,14 @@
    /**
     * 开始时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd hh-mm-ss")
    @JsonFormat(pattern = "yyyy-MM-dd")
    @NotNull
    private Date startTime;
    /**
     * 结束时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd hh-mm-ss")
    @JsonFormat(pattern = "yyyy-MM-dd")
    @NotNull
    private Date endTime;
@@ -84,13 +84,11 @@
    private Date updateTime;
    @TableLogic
    private String deleted;
    private Integer deleted;
    @TableField(exist = false)
    @NotBlank
    private String ruleList;
    @TableField(exist = false)
    @NotNull
    private MultipartFile file;
}