Commit 8fa53b828d0526e3d586bcd24cae3878f6027411
1 parent
913b726b3e
Exists in
master
问诊记录修改
Showing 2 changed files with 15 additions and 2 deletions
talkonlineweb/src/main/java/com/lyms/talkonlineweb/domain/LymsTkrecord.java
View file @
8fa53b8
... | ... | @@ -40,7 +40,17 @@ |
40 | 40 | */ |
41 | 41 | @TableField(value = "pcid") |
42 | 42 | private Integer pcid; |
43 | + /** | |
44 | + * 问诊卡编号 | |
45 | + */ | |
46 | + @TableField(value = "cid") | |
47 | + private Integer cid; | |
43 | 48 | |
49 | + /** | |
50 | + * 购买来源;1小程序,2医院 | |
51 | + */ | |
52 | + @TableField(value = "fid") | |
53 | + private Byte fid; | |
44 | 54 | |
45 | 55 | /** |
46 | 56 | * 问诊状态 |
talkonlineweb/src/main/resources/mapper/LymsTkrecordMapper.xml
View file @
8fa53b8
... | ... | @@ -9,6 +9,8 @@ |
9 | 9 | <result property="pid" column="pid" jdbcType="INTEGER"/> |
10 | 10 | <result property="pcid" column="pcid" jdbcType="INTEGER"/> |
11 | 11 | <result property="did" column="did" jdbcType="INTEGER"/> |
12 | + <result property="cid" column="cid" jdbcType="INTEGER"/> | |
13 | + <result property="fid" column="fid" jdbcType="TINYINT"/> | |
12 | 14 | <result property="stat" column="stat" jdbcType="INTEGER"/> |
13 | 15 | <result property="createdby" column="createdby" jdbcType="INTEGER"/> |
14 | 16 | <result property="createdtime" column="createdtime" jdbcType="TIMESTAMP"/> |
... | ... | @@ -18,8 +20,9 @@ |
18 | 20 | |
19 | 21 | <sql id="Base_Column_List"> |
20 | 22 | id,pid,pcid, |
21 | - did,stat,createdby, | |
22 | - createdtime,updatedby,updatedtime | |
23 | + did,cid,fid, | |
24 | + stat,createdby,createdtime, | |
25 | + updatedby,updatedtime | |
23 | 26 | </sql> |
24 | 27 | </mapper> |