| | |
| | | private Integer id; |
| | | |
| | | @Schema(description = "设备编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "5317") |
| | | @NotEmpty(message = "设备编号不能为空") |
| | | //@NotEmpty(message = "设备编号不能为空") |
| | | private String devId; |
| | | |
| | | @Schema(description = "设备固有编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "5317") |
| | | @NotEmpty(message = "设备固有编号不能为空") |
| | | private String devCodeIntrinsic; |
| | | |
| | | @Schema(description = "设备医院编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "5317") |
| | | @NotEmpty(message = "设备医院编号不能为空") |
| | | private String devCodeHosp; |
| | | |
| | | @Schema(description = "设备科室编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "5317") |
| | | @NotEmpty(message = "设备科室编号不能为空") |
| | | private String devCodeDept; |
| | | |
| | | @Schema(description = "分类名", requiredMode = Schema.RequiredMode.REQUIRED) |
| | | @NotEmpty(message = "分类名不能为空") |
| | |
| | | @Schema(description = "采购日期") |
| | | private LocalDate purchaseDate; |
| | | |
| | | @Schema(description = "遗失标记") |
| | | private Integer lost; |
| | | @Schema(description = "状态日期") |
| | | private LocalDate stateDate; |
| | | |
| | | /** |
| | | * 0 - 空闲 10 - 使用中 20 - 已遗失 |
| | | */ |
| | | @Schema(description = "状态") |
| | | private Integer state; |
| | | |
| | | } |