eight
2024-11-26 a73ef74a7b215299d2e6be291266d7cc1c3da85c
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
package cn.lihu.jh.module.ecg.controller.admin.queuesequence.vo;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.*;
import java.util.*;
 
@Schema(description = "管理后台 - 当天序号新增/修改 Request VO")
@Data
public class QueueSequenceSaveReqVO {
 
    @Schema(description = "DB 主键", requiredMode = Schema.RequiredMode.REQUIRED, example = "11958")
    private Integer id;
 
    @Schema(description = "检查类型", example = "2")
    private Integer checkType;
 
    @Schema(description = "时段")
    private Integer timeSlot;
 
    @Schema(description = "该时段 普通患者 序号")
    private Integer queueNo;
 
    @Schema(description = "该时段 vip 序号")
    private Integer queueVipNo;
 
    @Schema(description = "该时段 普通患者 序号满")
    private Integer queueFull;
 
    @Schema(description = "该时段 vip 序号满")
    private Integer queueVipFull;
 
}