|  |  | 
 |  |  |     @ExcelProperty("患者性别") | 
 |  |  |     private Byte patGender; | 
 |  |  |  | 
 |  |  |     @Schema(description = "患者详情") | 
 |  |  |     @ExcelProperty("患者详情") | 
 |  |  |     private Boolean patDetails; | 
 |  |  |  | 
 |  |  |     @Schema(description = "预约日期") | 
 |  |  |     @ExcelProperty("预约日期") | 
 |  |  |     private LocalDate bookDate; | 
 |  |  | 
 |  |  |  | 
 |  |  |     @Schema(description = "预约检查类型", example = "1") | 
 |  |  |     @ExcelProperty("预约检查类型") | 
 |  |  |     private Byte bookCheckType; | 
 |  |  |     private Integer bookCheckType; | 
 |  |  |  | 
 |  |  |     @Schema(description = "排队序号", requiredMode = Schema.RequiredMode.REQUIRED) | 
 |  |  |     @ExcelProperty("排队序号") | 
 |  |  |     private Integer seqNum; | 
 |  |  |  | 
 |  |  |     @Schema(description = "10:排队中 15:已召回 20:候诊准备 30:就诊中 40:就诊完成 50:过号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1") | 
 |  |  |     @ExcelProperty("10:排队中 15:已召回 20:候诊准备 30:就诊中 40:就诊完成 50:过号") | 
 |  |  |     private Byte status; | 
 |  |  |     @Schema(description = "5:过号 10:排队中 15:已召回 20:候诊准备 30:就诊中 40:就诊完成 ", requiredMode = Schema.RequiredMode.REQUIRED, example = "1") | 
 |  |  |     @ExcelProperty("5:过号 10:排队中 15:已召回 20:候诊准备 30:就诊中 40:就诊完成 ") | 
 |  |  |     private Integer status; | 
 |  |  |  | 
 |  |  |     @Schema(description = "过号标记", requiredMode = Schema.RequiredMode.REQUIRED) | 
 |  |  |     @ExcelProperty("过号标记") |