| | |
| | | package cn.lihu.jh.module.ecg.controller.admin.devmanage.vo; |
| | | |
| | | import cn.lihu.jh.module.ecg.dal.dataobject.patient.PatDetails; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.*; |
| | | |
| | |
| | | @ExcelProperty("设备编号") |
| | | private String devId; |
| | | |
| | | @Schema(description = "设备固有编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "5317") |
| | | @ExcelProperty("设备固有编号") |
| | | private String devCodeIntrinsic; |
| | | |
| | | @Schema(description = "设备医院编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "5317") |
| | | @ExcelProperty("设备医院编号") |
| | | private String devCodeHosp; |
| | | |
| | | @Schema(description = "设备科室编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "5317") |
| | | @ExcelProperty("设备科室编号") |
| | | private String devCodeDept; |
| | | |
| | | @Schema(description = "分类名", requiredMode = Schema.RequiredMode.REQUIRED) |
| | | @ExcelProperty("分类名") |
| | | private String category; |
| | |
| | | @ExcelProperty("创建时间") |
| | | private LocalDateTime createTime; |
| | | |
| | | @Schema(description = "遗失") |
| | | @ExcelProperty("是否遗失") |
| | | private Integer lost; |
| | | @Schema(description = "状态日期") |
| | | @ExcelProperty("状态日期") |
| | | private LocalDate stateDate; |
| | | |
| | | @Schema(description = "遗失日期") |
| | | @ExcelProperty("遗失日期") |
| | | private LocalDate loseDate; |
| | | } |
| | | /** |
| | | * 0 - 空闲 10 - 使用中 20 - 已遗失 |
| | | */ |
| | | @Schema(description = "状态") |
| | | @ExcelProperty("状态") |
| | | private Integer state; |
| | | |
| | | @Schema(description = "拆装编号") |
| | | @ExcelProperty("拆装编号") |
| | | private Long rentId; |
| | | |
| | | @Schema(description = "患者详情") |
| | | @ExcelProperty("患者详情") |
| | | private PatDetails patDetails; |
| | | } |