eight
2025-04-09 ee09bfa0695d0d89015ad1a7348949539b16cc1b
jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/controller/admin/jobrecord/vo/JobRecordSaveReqVO.java
@@ -2,9 +2,8 @@
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.*;
import java.util.*;
import org.springframework.format.annotation.DateTimeFormat;
import javax.validation.constraints.NotEmpty;
import javax.validation.constraints.NotNull;
import java.time.LocalDateTime;
@@ -14,6 +13,10 @@
    @Schema(description = "id", requiredMode = Schema.RequiredMode.REQUIRED, example = "2037")
    private Long id;
    @Schema(description = "检查类型", requiredMode = Schema.RequiredMode.REQUIRED, example = "100")
    @NotEmpty(message = "检查类型不能为空")
    private Integer checkType;
    @Schema(description = "作业类型", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
    @NotNull(message = "作业类型不能为空")
@@ -39,9 +42,13 @@
    private LocalDateTime jobTime;
    @Schema(description = "作业概要")
    private Integer summary;
    private String summary;
    @Schema(description = "备注", example = "你猜")
    private String remark;
    @Schema(description = "对应租赁编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "19472")
    @NotNull(message = "对应租赁编号不能为空")
    private Long rentId;
}