| | |
| | | @Schema(description = "叫号列") |
| | | private Integer callingColumn; |
| | | |
| | | @Schema(description = "是否显示患者条码") |
| | | private Integer displayBarcode; |
| | | @Schema(description = "根据患者来源决定,是否显示患者条码") |
| | | private Integer[] displayBarcode; |
| | | |
| | | @Schema(description = "是否需要确费") |
| | | private Integer expenseRecognition; |
| | |
| | | @ExcelProperty("叫号列") |
| | | private Integer callingColumn; |
| | | |
| | | @Schema(description = "是否显示患者条码") |
| | | @Schema(description = "根据患者来源决定,是否显示患者条码") |
| | | @ExcelProperty("是否显示患者条码") |
| | | private Integer displayBarcode; |
| | | private Integer[] displayBarcode; |
| | | |
| | | @Schema(description = "是否需要确费") |
| | | @ExcelProperty("是否需要确费") |
| | |
| | | @Schema(description = "叫号列") |
| | | private Integer callingColumn; |
| | | |
| | | @Schema(description = "是否显示患者条码") |
| | | private Integer displayBarcode; |
| | | @Schema(description = "根据患者来源决定,是否显示患者条码") |
| | | private Integer[] displayBarcode; |
| | | |
| | | @Schema(description = "是否需要确费") |
| | | private Integer expenseRecognition; |
| | |
| | | @Schema(description = "检查类型值") |
| | | private Integer value; |
| | | |
| | | @Schema(description = "显示条码") |
| | | private Integer displayBarcode; |
| | | @Schema(description = "根据患者来源决定,是否显示患者条码") |
| | | private Integer[] displayBarcode; |
| | | |
| | | @Schema(description = "预约注意事项") |
| | | private String notes; |
| | |
| | | @ToString(callSuper = true) |
| | | public class QueuePageReqVO extends PageParam { |
| | | |
| | | @Schema(description = "预约申请号", example = "2024435") |
| | | private String applyNo; |
| | | |
| | | @Schema(description = "就诊流水号", example = "2024435") |
| | | private String episodeId; |
| | | |
| | |
| | | @ExcelProperty("id") |
| | | private Integer id; |
| | | |
| | | @Schema(description = "预约申请号", example = "2024435") |
| | | @ExcelProperty("预约申请号") |
| | | private String applyNo; |
| | | |
| | | @Schema(description = "就诊流水号", example = "2024435") |
| | | @ExcelProperty("就诊流水号") |
| | | private String episodeId; |
| | |
| | | @Schema(description = "id", requiredMode = Schema.RequiredMode.REQUIRED, example = "21320") |
| | | private Integer id; |
| | | |
| | | @Schema(description = "预约申请号", example = "2024435") |
| | | private String applyNo; |
| | | |
| | | @Schema(description = "就诊流水号", example = "2024435") |
| | | private String episodeId; |
| | | |
| | |
| | | */ |
| | | private Integer callingColumn; |
| | | /** |
| | | * 是否显示患者条码 |
| | | * 根据患者来源决定,是否显示患者条码 |
| | | */ |
| | | private Integer displayBarcode; |
| | | @TableField(typeHandler = JacksonTypeHandler.class) |
| | | private Integer[] displayBarcode; |
| | | /** |
| | | * 是否需要确费 |
| | | */ |
| | |
| | | @TableId |
| | | private Integer id; |
| | | /** |
| | | * 预约申请号 |
| | | */ |
| | | private String applyNo; |
| | | /** |
| | | * 就诊流水号 |
| | | */ |
| | | private String episodeId; |
| | |
| | | |
| | | @Select("SELECT * FROM lihu.check_type;") |
| | | @Results({ |
| | | @Result(property = "displayBarcode", column = "display_barcode", typeHandler=com.baomidou.mybatisplus.extension.handlers.JacksonTypeHandler.class) |
| | | @Result(property = "affinityCheckTypes", column = "affinity_check_types", typeHandler=com.baomidou.mybatisplus.extension.handlers.JacksonTypeHandler.class) |
| | | }) |
| | | List<CheckTypeDO> simpleCheckTypeList(); |