eight
2024-11-12 343d897f00966d40f7eaa1cdfd257f63abd2996a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
package cn.lihu.jh.module.ecg.controller.admin.jobrecord.vo;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.*;
 
import javax.validation.constraints.NotEmpty;
import javax.validation.constraints.NotNull;
import java.time.LocalDateTime;
 
@Schema(description = "管理后台 - 工作记录新增/修改 Request VO")
@Data
public class JobRecordSaveReqVO {
 
    @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 = "作业类型不能为空")
    private Integer jobType;
 
    @Schema(description = "医生编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "24197")
    @NotNull(message = "医生编号不能为空")
    private Long docId;
 
    @Schema(description = "医生名称", example = "赵六")
    private String docName;
 
    @Schema(description = "设备编号", example = "9159")
    private String devId;
 
    @Schema(description = "患者编号", example = "19193")
    private String patId;
 
    @Schema(description = "患者名称", example = "芋艿")
    private String patName;
 
    @Schema(description = "作业时间")
    private LocalDateTime jobTime;
 
    @Schema(description = "作业概要")
    private String summary;
 
    @Schema(description = "备注", example = "你猜")
    private String remark;
 
    @Schema(description = "对应租赁编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "19472")
    @NotNull(message = "对应租赁编号不能为空")
    private Long rentId;
 
}