| 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; | 
|   | 
| } |