eight
2024-09-12 472979c8d2339ab8f4f22a4a04a11cebbeded7ac
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
55
56
57
package cn.lihu.jh.module.ecg.controller.admin.jobrecord.vo;
 
import com.alibaba.excel.annotation.ExcelProperty;
import lombok.*;
import java.util.*;
import io.swagger.v3.oas.annotations.media.Schema;
import cn.lihu.jh.framework.common.pojo.PageParam;
import org.springframework.format.annotation.DateTimeFormat;
import java.time.LocalDateTime;
 
import static cn.lihu.jh.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND;
 
@Schema(description = "管理后台 - 工作记录分页 Request VO")
@Data
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
public class JobRecordPageReqVO extends PageParam {
 
    @Schema(description = "作业类型", example = "1")
    private Integer jobType;
 
    @Schema(description = "医生编号", example = "24197")
    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 = "作业时间")
    @DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
    private LocalDateTime[] jobTime;
 
    @Schema(description = "作业概要")
    private String summary;
 
    @Schema(description = "备注", example = "你猜")
    private String remark;
 
    @Schema(description = "取消安装")
    private Integer cancelled;
 
    @Schema(description = "创建时间")
    @DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
    private LocalDateTime[] createTime;
 
    @Schema(description = "对应租赁编号", example = "19472")
    private Long rentId;
 
}