| | |
| | | |
| | | @Schema(description = "预约检查类型", requiredMode = Schema.RequiredMode.REQUIRED, example = "2") |
| | | @ExcelProperty(value = "预约检查类型", converter = DictConvert.class) |
| | | @DictFormat("ecg_check_type") // TODO 代码优化:建议设置到对应的 DictTypeConstants 枚举类中 |
| | | private Byte bookCheckType; |
| | | private Integer bookCheckType; |
| | | |
| | | @Schema(description = "预约来源:X系统、护士手动预约", requiredMode = Schema.RequiredMode.REQUIRED) |
| | | @ExcelProperty("预约来源:X系统、护士手动预约") |
| | | private String bookSrc; |
| | | private Integer bookSrc; |
| | | |
| | | @Schema(description = "已付款") |
| | | @ExcelProperty("已付款") |
| | | private Integer paid; |
| | | } |