From 8fa53b828d0526e3d586bcd24cae3878f6027411 Mon Sep 17 00:00:00 2001 From: changpengfei Date: Tue, 14 Sep 2021 10:38:45 +0800 Subject: [PATCH] =?UTF-8?q?=E9=97=AE=E8=AF=8A=E8=AE=B0=E5=BD=95=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/java/com/lyms/talkonlineweb/domain/LymsTkrecord.java | 10 ++++++++++ talkonlineweb/src/main/resources/mapper/LymsTkrecordMapper.xml | 7 +++++-- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/talkonlineweb/src/main/java/com/lyms/talkonlineweb/domain/LymsTkrecord.java b/talkonlineweb/src/main/java/com/lyms/talkonlineweb/domain/LymsTkrecord.java index 46c1c4d..1eba847 100644 --- a/talkonlineweb/src/main/java/com/lyms/talkonlineweb/domain/LymsTkrecord.java +++ b/talkonlineweb/src/main/java/com/lyms/talkonlineweb/domain/LymsTkrecord.java @@ -40,7 +40,17 @@ public class LymsTkrecord implements Serializable { */ @TableField(value = "pcid") private Integer pcid; + /** + * 问诊卡编号 + */ + @TableField(value = "cid") + private Integer cid; + /** + * 购买来源;1小程序,2医院 + */ + @TableField(value = "fid") + private Byte fid; /** * 问诊状态 diff --git a/talkonlineweb/src/main/resources/mapper/LymsTkrecordMapper.xml b/talkonlineweb/src/main/resources/mapper/LymsTkrecordMapper.xml index 0f9f8c7..68229a4 100644 --- a/talkonlineweb/src/main/resources/mapper/LymsTkrecordMapper.xml +++ b/talkonlineweb/src/main/resources/mapper/LymsTkrecordMapper.xml @@ -9,6 +9,8 @@ + + @@ -18,7 +20,8 @@ id,pid,pcid, - did,stat,createdby, - createdtime,updatedby,updatedtime + did,cid,fid, + stat,createdby,createdtime, + updatedby,updatedtime -- 1.8.3.1