|  |  | 
 |  |  | package cn.lihu.jh.module.ecg.controller.admin.queue.vo; | 
 |  |  |  | 
 |  |  | import cn.lihu.jh.module.ecg.dal.dataobject.patient.PatDetails; | 
 |  |  | import com.alibaba.excel.annotation.ExcelProperty; | 
 |  |  | import com.baomidou.mybatisplus.annotation.TableField; | 
 |  |  | import com.baomidou.mybatisplus.extension.handlers.JacksonTypeHandler; | 
 |  |  | import io.swagger.v3.oas.annotations.media.Schema; | 
 |  |  | 
 |  |  | import javax.validation.constraints.NotNull; | 
 |  |  | import java.time.LocalDate; | 
 |  |  | import java.util.List; | 
 |  |  | import java.util.Map; | 
 |  |  |  | 
 |  |  |  | 
 |  |  | @Schema(description = "管理后台 - 排队新增/修改 Request VO") | 
 |  |  | 
 |  |  |  | 
 |  |  |     @Schema(description = "id", requiredMode = Schema.RequiredMode.REQUIRED, example = "21320") | 
 |  |  |     private Integer id; | 
 |  |  |  | 
 |  |  |     @Schema(description = "预约申请号", example = "2024435") | 
 |  |  |     private String applyNo; | 
 |  |  |  | 
 |  |  |     @Schema(description = "就诊流水号", example = "2024435") | 
 |  |  |     private String episodeId; | 
 |  |  |  | 
 |  |  |     @Schema(description = "内部预约编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "21320") | 
 |  |  |     private Long appointId; | 
 |  |  |  | 
 |  |  |     @Schema(description = "患者编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "30473") | 
 |  |  |     @NotEmpty(message = "患者编号不能为空") | 
 |  |  | 
 |  |  |     private Byte patGender; | 
 |  |  |  | 
 |  |  |     @Schema(description = "患者详情") | 
 |  |  |     private String patDetails; | 
 |  |  |     private PatDetails patDetails; | 
 |  |  |  | 
 |  |  |     @Schema(description = "预约日期", requiredMode = Schema.RequiredMode.REQUIRED) | 
 |  |  |     @NotNull(message = "预约日期不能为空") | 
 |  |  | 
 |  |  |     @NotNull(message = "预约过期标记不能为空") | 
 |  |  |     private Byte expired; | 
 |  |  |  | 
 |  |  |     private Integer affinityItem; | 
 |  |  |  | 
 |  |  |     @Schema(description = "诊室编号") | 
 |  |  |     private Long roomId; | 
 |  |  |  |