eight
2024-09-11 02856700ce4cc57cf9447134a9f0c6860d85b802
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 jakarta.validation.constraints.*;
import org.springframework.format.annotation.DateTimeFormat;
import javax.validation.constraints.NotNull;
import java.time.LocalDateTime;
@Schema(description = "管理后台 - 工作记录新增/修改 Request VO")
@@ -43,4 +42,8 @@
    @Schema(description = "备注", example = "你猜")
    private String remark;
    @Schema(description = "对应租赁编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "19472")
    @NotNull(message = "对应租赁编号不能为空")
    private Long rentId;
}