eight
2025-03-30 069328ea846a08e673c508725e7e8d019f8a6333
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
package cn.lihu.jh.module.ecg.controller.admin.room.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 RoomPageReqVO extends PageParam {
 
    @Schema(description = "诊室编号")
    private Long roomId;
 
    @Schema(description = "诊室名称")
    private String roomName;
 
    @Schema(description = "诊疗床编号")
    private String bedNo;
 
    @Schema(description = "诊室IP")
    private String ip;
 
    @Schema(description = "检查类型")
    private Integer[] checkTypes;
 
    @Schema(description = "操作类型")
    private Integer opType;
 
    @Schema(description = "开诊状态")
    private Integer status;
 
    @Schema(description = "医生名")
    private String doctorName;
 
    @Schema(description = "创建时间")
    @DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
    private LocalDateTime[] createTime;
 
}