| | |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.*; |
| | | |
| | | import java.sql.Date; |
| | | import java.time.LocalDate; |
| | | import java.util.*; |
| | | |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.time.LocalDateTime; |
| | | |
| | | import com.alibaba.excel.annotation.*; |
| | | import cn.lihu.jh.framework.excel.core.annotations.DictFormat; |
| | | import cn.lihu.jh.framework.excel.core.convert.DictConvert; |
| | |
| | | private LocalDateTime bookTime; |
| | | |
| | | @Schema(description = "预约检查类型", requiredMode = Schema.RequiredMode.REQUIRED, example = "2") |
| | | @DictFormat("ecg_check_type") |
| | | @ExcelProperty(value = "预约检查类型", converter = DictConvert.class) |
| | | private Integer bookCheckType; |
| | | |
| | |
| | | private Integer bookSeqNum; |
| | | |
| | | @Schema(description = "预约来源:X系统、护士手动预约", requiredMode = Schema.RequiredMode.REQUIRED) |
| | | @ExcelProperty("预约来源:X系统、护士手动预约") |
| | | // @ExcelProperty("预约来源:X系统、护士手动预约") |
| | | private Integer bookSrc; |
| | | |
| | | @Schema(description = "已付款") |
| | | @ExcelProperty("已付款") |
| | | @Schema(description = "已付款 0-未交费 1-已缴费") |
| | | @DictFormat("ecg_pay_type") |
| | | @ExcelProperty(value = "付款状态", converter = DictConvert.class) |
| | | private Integer paid; |
| | | |
| | | // @TableField(exist = false) |
| | | @Schema(description = "状态") |
| | | @DictFormat("ecg_status_type") |
| | | @ExcelProperty(value = "状态", converter = DictConvert.class) |
| | | private String status; |
| | | |
| | | |
| | | /** |
| | | * 登记时间 |
| | | */ |
| | | @Schema(description = "登记时间", requiredMode = Schema.RequiredMode.REQUIRED) |
| | | @ExcelProperty("登记时间") |
| | | private Date registerDate; |
| | | |
| | | /** |
| | | * 耐药性: 是否多耐1代表是,0代表不是 |
| | |
| | | private String tolerance; |
| | | |
| | | /** |
| | | *住院号 |
| | | * 住院号 |
| | | */ |
| | | private String hospitalNo; |
| | | |
| | |
| | | * 门诊号 |
| | | */ |
| | | private String outpatientNo; |
| | | |
| | | private LocalDateTime createTime; |
| | | |
| | | } |