| | |
| | | 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 = "分类名不能为空") |
| | | private String category; |