eight
2024-11-07 e36c1e2363e36a69a3cc8ccbc00d28b16f926abd
jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/dal/dataobject/appointment/AppointmentDO.java
@@ -1,5 +1,7 @@
package cn.lihu.jh.module.ecg.dal.dataobject.appointment;
import com.alibaba.excel.annotation.ExcelProperty;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.*;
import java.time.*;
@@ -31,7 +33,7 @@
     * id
     */
    @TableId
    private Integer id;
    private Long id;
    /**
     * 患者编号
     */
@@ -49,7 +51,7 @@
    /**
     * 患者生日
     */
    private LocalDateTime patBirthday;
    private LocalDate patBirthday;
    /**
     * 患者手机
     */
@@ -105,16 +107,23 @@
    /**
     * 预约检查类型
     *
     * 枚举 {@link TODO ecg_check_type 对应的类}
     */
    private Byte bookCheckType;
    private Integer bookCheckType;
    /**
     * 预约来源:X系统、护士手动预约
     * 预约来源:0 ~~ X系统、1 ~~ 护士手动预约
     */
    private Byte bookSrc;
    private Integer bookSrc;
    /**
     * 已付款
     */
    private Integer paid;
    /**
     * 从数据平台同步时间
     */
    private LocalDateTime syncTime;
}