eight
2024-12-12 2bc90e242eceb83d9aa80d48ea9f991c0f9b99c6
jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/dal/dataobject/checktype/CheckTypeDO.java
@@ -1,5 +1,6 @@
package cn.lihu.jh.module.ecg.dal.dataobject.checktype;
import com.baomidou.mybatisplus.extension.handlers.JacksonTypeHandler;
import lombok.*;
import java.util.*;
import java.time.LocalDateTime;
@@ -12,7 +13,7 @@
 *
 * @author majianbo
 */
@TableName("check_type")
@TableName(value="check_type", autoResultMap = true)
@KeySequence("check_type_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。
@Data
@EqualsAndHashCode(callSuper = true)
@@ -42,7 +43,6 @@
    /**
     * 需要设备领用
     *
     * 枚举 {@link TODO infra_boolean_string 对应的类}
     */
    private Integer needDevReady;
    /**
@@ -50,9 +50,10 @@
     */
    private Integer callingColumn;
    /**
     * 是否显示患者条码
     * 根据患者来源决定,是否显示患者条码
     */
    private Integer displayBarcode;
    @TableField(typeHandler = JacksonTypeHandler.class)
    private Integer[] displayBarcode;
    /**
     * 是否需要确费
     */
@@ -68,6 +69,13 @@
    /**
     * 亲和的检查类型
     */
    private String affinityCheckTypes;
    @TableField(typeHandler = JacksonTypeHandler.class)
    private Integer[] affinityCheckTypes;
}
    /**
     * 预约注意事项
     */
    private String notes;
    private String seqPrefix;
}