From 4b919fe1981c8ac363d8a569f74c4e6307478bb4 Mon Sep 17 00:00:00 2001 From: yangjun <1173114630@qq.com> Date: Thu, 26 Feb 2026 08:52:26 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E9=95=BF=E8=80=85=E6=A0=87?= =?UTF-8?q?=E7=AD=BE=E6=93=8D=E4=BD=9C=E6=97=A5=E5=BF=97=E6=9F=A5=E8=AF=A2?= =?UTF-8?q?=E5=8A=9F=EF=BC=8C=E9=95=9C=E5=83=8F=E6=97=A5=E5=BF=97=E6=9F=A5?= =?UTF-8?q?=E8=AF=A2=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../entity/ElderTagOpeLogMain.java | 8 +++++--- .../entity/ElderTagSyncLogMain.java | 20 ++++++++++--------- 2 files changed, 16 insertions(+), 12 deletions(-) diff --git a/nursing-unit-elder/nu-elder-biz/src/main/java/com/nu/modules/eldertagopelog/entity/ElderTagOpeLogMain.java b/nursing-unit-elder/nu-elder-biz/src/main/java/com/nu/modules/eldertagopelog/entity/ElderTagOpeLogMain.java index 27f5c58..2cf4e49 100644 --- a/nursing-unit-elder/nu-elder-biz/src/main/java/com/nu/modules/eldertagopelog/entity/ElderTagOpeLogMain.java +++ b/nursing-unit-elder/nu-elder-biz/src/main/java/com/nu/modules/eldertagopelog/entity/ElderTagOpeLogMain.java @@ -38,13 +38,15 @@ public class ElderTagOpeLogMain implements Serializable { @TableId(type = IdType.ASSIGN_ID) @ApiModelProperty(value = "id") private java.lang.String id; - /**操作类型 1新增 2修改*/ - @Excel(name = "操作类型 1新增 2修改", width = 15) - @ApiModelProperty(value = "操作类型 1新增 2修改") + /**操作类型*/ + @Excel(name = "操作类型", width = 15) + @ApiModelProperty(value = "操作类型") + @Dict(dicCode = "directive_ope_type") private java.lang.String opeType; /**机构编码*/ @Excel(name = "机构编码", width = 15) @ApiModelProperty(value = "机构编码") + @Dict(dictTable = "sys_depart", dicText = "depart_name", dicCode = "org_code") private java.lang.String orgCode; /**操作人*/ @ApiModelProperty(value = "操作人") diff --git a/nursing-unit-elder/nu-elder-biz/src/main/java/com/nu/modules/eldertagsynclog/entity/ElderTagSyncLogMain.java b/nursing-unit-elder/nu-elder-biz/src/main/java/com/nu/modules/eldertagsynclog/entity/ElderTagSyncLogMain.java index c397182..3878579 100644 --- a/nursing-unit-elder/nu-elder-biz/src/main/java/com/nu/modules/eldertagsynclog/entity/ElderTagSyncLogMain.java +++ b/nursing-unit-elder/nu-elder-biz/src/main/java/com/nu/modules/eldertagsynclog/entity/ElderTagSyncLogMain.java @@ -38,17 +38,19 @@ public class ElderTagSyncLogMain implements Serializable { @TableId(type = IdType.ASSIGN_ID) @ApiModelProperty(value = "id") private java.lang.String id; - /**哪个机构镜像的*/ - @Excel(name = "哪个机构镜像的", width = 15) - @ApiModelProperty(value = "哪个机构镜像的") + /**目标镜像机构*/ + @Excel(name = "目标镜像机构", width = 15) + @ApiModelProperty(value = "目标镜像机构") + @Dict(dictTable = "sys_depart", dicText = "depart_name", dicCode = "org_code") private java.lang.String opeOrgCode; - /**镜像的哪个机构的标签*/ - @Excel(name = "镜像的哪个机构的标签", width = 15) - @ApiModelProperty(value = "镜像的哪个机构的标签") + /**源镜像机构*/ + @Excel(name = "源镜像机构", width = 15) + @ApiModelProperty(value = "源镜像机构") + @Dict(dictTable = "sys_depart", dicText = "depart_name", dicCode = "org_code") private java.lang.String targetOrgCode; - /**标签镜像码*/ - @Excel(name = "标签镜像码", width = 15) - @ApiModelProperty(value = "标签镜像码") + /**镜像码*/ + @Excel(name = "镜像码", width = 15) + @ApiModelProperty(value = "镜像码") private java.lang.String orgTagCode; /**创建人*/ @ApiModelProperty(value = "创建人")