| | |
| | | package cn.lihu.jh.module.ecg.controller.admin.queue.vo; |
| | | |
| | | import cn.lihu.jh.module.ecg.dal.dataobject.patient.PatDetails; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.extension.handlers.JacksonTypeHandler; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.*; |
| | | |
| | | import javax.validation.constraints.NotEmpty; |
| | | 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 = "内部预约编号", 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 = "预约日期不能为空") |
| | |
| | | |
| | | @Schema(description = "预约检查类型", example = "1") |
| | | private Integer bookCheckType; |
| | | |
| | | @Schema(description = "预约序号", requiredMode = Schema.RequiredMode.REQUIRED) |
| | | //@NotNull(message = "预约序号不能为空") |
| | | private Integer bookSeqNum; |
| | | |
| | | @Schema(description = "是否VIP", requiredMode = Schema.RequiredMode.REQUIRED) |
| | | //@NotNull(message = "是否VIP") |
| | | private Integer isVip; |
| | | |
| | | @Schema(description = "排队序号", requiredMode = Schema.RequiredMode.REQUIRED) |
| | | @NotNull(message = "排队序号不能为空") |
| | |
| | | @NotNull(message = "预约过期标记不能为空") |
| | | private Byte expired; |
| | | |
| | | private Integer affinityItem; |
| | | |
| | | @Schema(description = "诊室编号") |
| | | private Long roomId; |
| | | |
| | |
| | | |
| | | @Schema(description = "诊疗床编号") |
| | | private String bedNo; |
| | | } |
| | | |
| | | } |