From c45c7c3340efdc57342432b84be26d889d633edf Mon Sep 17 00:00:00 2001
From: liusheng <337615773@qq.com>
Date: 星期六, 20 七月 2024 16:49:27 +0800
Subject: [PATCH] 代码提交
---
smartor/src/main/java/com/smartor/domain/Icd10Association.java | 103 +++++++++++++++++++++++++++++++++++++++++++--------
1 files changed, 86 insertions(+), 17 deletions(-)
diff --git a/smartor/src/main/java/com/smartor/domain/Icd10Association.java b/smartor/src/main/java/com/smartor/domain/Icd10Association.java
index 22e9ee1..f001993 100644
--- a/smartor/src/main/java/com/smartor/domain/Icd10Association.java
+++ b/smartor/src/main/java/com/smartor/domain/Icd10Association.java
@@ -1,5 +1,7 @@
package com.smartor.domain;
+import java.util.Date;
+
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
@@ -9,18 +11,29 @@
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
-import java.util.Date;
-
/**
- * 鐤剧梾鍏宠仈瀵硅薄 icd10_association
+ * 鎸囨爣鐤剧梾瀵硅薄 ivr_liba_target_icd10
*
* @author ruoyi
- * @date 2023-06-26
+ * @date 2023-12-20
*/
@Data
-@ApiModel(value = "Icd10Association", description = "鐤剧梾鍏宠仈瀵硅薄")
-public class Icd10Association {
+@ApiModel(value = "Icd10Association", description = "鎸囨爣鐤剧梾瀵硅薄")
+public class Icd10Association extends BaseEntity {
private static final long serialVersionUID = 1L;
+
+ /**
+ * 鑷ID
+ */
+ @ApiModelProperty(value = "涓婚敭")
+ private Long id;
+
+ /**
+ * 鐤剧梾id
+ */
+ @ApiModelProperty(value = "鐤剧梾id")
+ @Excel(name = "鐤剧梾id")
+ private Long icd10id;
/**
* 鐤剧梾缂栫爜
@@ -36,19 +49,75 @@
@Excel(name = "鐤剧梾鍚嶇О")
private String icd10name;
- /**
- * 闂嵎ID
- */
- @ApiModelProperty(value = "闂嵎ID")
- @Excel(name = "闂嵎ID")
- private Long svyid;
-
/**
- * 鏇存柊鏃堕棿
+ * 鏈烘瀯ID
*/
- @ApiModelProperty(value = "鏇存柊鏃堕棿")
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
- private Date updatetime;
+ @ApiModelProperty(value = "鏈烘瀯ID")
+ @Excel(name = " 鏈烘瀯ID ")
+ private String orgid;
+
+ /**
+ * 鍒犻櫎鏍囪
+ */
+ @ApiModelProperty(value = "鍒犻櫎鏍囪")
+ private String delFlag;
+
+ /**
+ * 涓婁紶鏍囪
+ */
+ @ApiModelProperty(value = "涓婁紶鏍囪")
+ @Excel(name = " 涓婁紶鏍囪 ")
+ private Long isupload;
+
+ /**
+ * 涓婁紶鏃堕棿
+ */
+ @ApiModelProperty(value = "涓婁紶鏃堕棿")
+ @JsonFormat(pattern = "yyyy-MM-dd")
+ @Excel(name = " 涓婁紶鏃堕棿 ", width = 30, dateFormat = "yyyy-MM-dd")
+ private Date uploadTime;
+
+ /**
+ * 澶栭儴ID
+ */
+ @ApiModelProperty(value = "澶栭儴ID")
+ @Excel(name = "澶栭儴ID ")
+ private Long outid;
+
+ /**
+ * 1,鎸囨爣 2,闅忚璇濇湳 3,闅忚妯$増 4,闂嵎璇濇湳 锛�5,闂嵎妯$増 6,瀹f暀
+ */
+ @ApiModelProperty(value = "1,鎸囨爣 2,闅忚璇濇湳 3,闅忚妯$増 4,闂嵎璇濇湳 锛�5,闂嵎妯$増 6,瀹f暀")
+ @Excel(name = "1,鎸囨爣 2,闅忚璇濇湳 3,闅忚妯$増 4,闂嵎璇濇湳 锛�5,闂嵎妯$増 6,瀹f暀")
+ private Long type;
+
+ /**
+ * 鐖禝D
+ */
+ @ApiModelProperty(value = "鐖禝D")
+ @Excel(name = "鐖禝D")
+ private Long pid;
+
+ /**
+ * GUID
+ */
+ @ApiModelProperty(value = "GUID")
+ @Excel(name = "GUID")
+ private String guid;
+
+ /**
+ * pageNum
+ */
+ @ApiModelProperty(value = "pageNum")
+ @Excel(name = "pageNum")
+ private Integer pageNum;
+
+ /**
+ * pageSize
+ */
+ @ApiModelProperty(value = "pageSize")
+ @Excel(name = "pageSize")
+ private Integer pageSize;
}
--
Gitblit v1.9.3