liusheng
2 天以前 a2a840d4969d680b30eeec184a7059fef64d0b84
jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/controller/admin/appointment/vo/AppointmentRespVO.java
@@ -3,10 +3,14 @@
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;
@@ -96,6 +100,7 @@
    private LocalDateTime bookTime;
    @Schema(description = "预约检查类型", requiredMode = Schema.RequiredMode.REQUIRED, example = "2")
    @DictFormat("ecg_check_type")
    @ExcelProperty(value = "预约检查类型", converter = DictConvert.class)
    private Integer bookCheckType;
@@ -104,15 +109,27 @@
    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代表不是
@@ -120,7 +137,7 @@
    private String tolerance;
    /**
     *住院号
     * 住院号
     */
    private String hospitalNo;
@@ -133,4 +150,7 @@
     * 门诊号
     */
    private String outpatientNo;
    private LocalDateTime createTime;
}