| | |
| | | package cn.lihu.jh.module.ecg.controller.admin.room.vo; |
| | | |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.*; |
| | | |
| | | import javax.validation.constraints.Min; |
| | | import javax.validation.constraints.NotEmpty; |
| | | import javax.validation.constraints.NotNull; |
| | | import java.util.*; |
| | | |
| | | |
| | |
| | | private Integer id; |
| | | |
| | | @Schema(description = "诊室编号", requiredMode = Schema.RequiredMode.REQUIRED) |
| | | @NotEmpty(message = "诊室编号不能为空") |
| | | private String roomNo; |
| | | @Min(value = 0, message = "诊室编号不能为空") |
| | | private Long roomId; |
| | | |
| | | @Schema(description = "诊室名称", requiredMode = Schema.RequiredMode.REQUIRED) |
| | | @NotEmpty(message = "诊室名称不能为空") |
| | | private String roomName; |
| | | |
| | | @Schema(description = "诊疗床编号", requiredMode = Schema.RequiredMode.REQUIRED) |
| | | @NotEmpty(message = "诊疗床编号不能为空") |
| | | private String bedNo; |
| | | |
| | | @Schema(description = "诊室IP") |
| | | private String ip; |
| | | |
| | | @Schema(description = "开诊状态", requiredMode = Schema.RequiredMode.REQUIRED) |
| | | private Integer status; |
| | | |
| | | @Schema(description = "医生名", requiredMode = Schema.RequiredMode.REQUIRED) |
| | | private String doctorName; |
| | | |
| | | @Schema(description = "检查类型") |
| | | private Integer[] checkTypes; |
| | | |
| | | @Schema(description = "操作类型") |
| | | private Integer opType; |
| | | } |