From d1708b4b2bc6596f9c62354274f1af97be45401c Mon Sep 17 00:00:00 2001 From: eight <641137800@qq.com> Date: 星期四, 28 十一月 2024 14:40:46 +0800 Subject: [PATCH] 按工位的多个检查项目 抢占 排队中 患者 --- jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/dal/dataobject/checktype/CheckTypeDO.java | 13 +++++++++---- 1 files changed, 9 insertions(+), 4 deletions(-) diff --git a/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/dal/dataobject/checktype/CheckTypeDO.java b/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/dal/dataobject/checktype/CheckTypeDO.java index e0d4d6d..994ff9a 100644 --- a/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/dal/dataobject/checktype/CheckTypeDO.java +++ b/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銆丳ostgreSQL銆並ingbase銆丏B2銆丠2 鏁版嵁搴撶殑涓婚敭鑷銆傚鏋滄槸 MySQL 绛夋暟鎹簱锛屽彲涓嶅啓銆� @Data @EqualsAndHashCode(callSuper = true) @@ -42,7 +43,6 @@ /** * 闇�瑕佽澶囬鐢� * - * 鏋氫妇 {@link TODO infra_boolean_string 瀵瑰簲鐨勭被} */ private Integer needDevReady; /** @@ -68,6 +68,11 @@ /** * 浜插拰鐨勬鏌ョ被鍨� */ - private String affinityCheckTypes; + @TableField(typeHandler = JacksonTypeHandler.class) + private Integer[] affinityCheckTypes; -} \ No newline at end of file + /** + * 棰勭害娉ㄦ剰浜嬮」 + */ + private String notes; +} -- Gitblit v1.9.3