|  |  | 
 |  |  | package cn.lihu.jh.module.ecg.controller.admin.appointment.vo; | 
 |  |  |  | 
 |  |  | import com.alibaba.excel.annotation.ExcelProperty; | 
 |  |  | import com.baomidou.mybatisplus.annotation.TableField; | 
 |  |  | import io.swagger.v3.oas.annotations.media.Schema; | 
 |  |  | import lombok.*; | 
 |  |  |  | 
 |  |  | 
 |  |  | public class AppointmentSaveReqVO { | 
 |  |  |  | 
 |  |  |     private Long id; | 
 |  |  |  | 
 |  |  |     @Schema(description = "预约申请号", example = "2024435") | 
 |  |  |     private String applyNo; | 
 |  |  |  | 
 |  |  |     @Schema(description = "就诊流水号", example = "2024546") | 
 |  |  |     //@NotEmpty(message = "就诊流水号") | 
 |  |  |     private String episodeId; | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 患者来源类型  01问诊 02急诊 03体检 04住院 | 
 |  |  |      */ | 
 |  |  |     private Integer patSrc; | 
 |  |  |  | 
 |  |  |     @Schema(description = "患者编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "29034") | 
 |  |  |     @NotEmpty(message = "患者编号不能为空") | 
 |  |  | 
 |  |  |     @Schema(description = "床号") | 
 |  |  |     private String patBedNo; | 
 |  |  |  | 
 |  |  |     @Schema(description = "预约编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "27849") | 
 |  |  |     //@NotEmpty(message = "预约编号不能为空") | 
 |  |  |     private String bookId; | 
 |  |  |  | 
 |  |  |     @Schema(description = "预约日期", requiredMode = Schema.RequiredMode.REQUIRED) | 
 |  |  |     @NotNull(message = "预约日期不能为空") | 
 |  |  |     private LocalDateTime bookDate; | 
 |  |  | 
 |  |  |  | 
 |  |  |     @Schema(description = "已付款") | 
 |  |  |     private Integer paid; | 
 |  |  |  | 
 |  |  | //    @TableField(exist = false) | 
 |  |  |     private String status; | 
 |  |  | } |