Commit 2d9cfcd9ac0f11847c4a1c505ed5e81f79dd2a5e
1 parent
d25a50d2f7
Exists in
master
and in
8 other branches
增加是否通知
Showing 1 changed file with 3 additions and 2 deletions
platform-biz-service/src/main/resources/mainOrm/Users.xml
View file @
2d9cfcd
... | ... | @@ -23,13 +23,14 @@ |
23 | 23 | <result column="last_login_time" property="lastLoginTime" jdbcType="TIMESTAMP"/> |
24 | 24 | <result column="foreign_id" property="foreignId" jdbcType="VARCHAR"/> |
25 | 25 | <result column="other_account" property="otherAccount" jdbcType="INTEGER"/> |
26 | + <result column="zhiChenId" property="zhiChenId" jdbcType="INTEGER"/> | |
26 | 27 | </resultMap> |
27 | 28 | |
28 | 29 | |
29 | 30 | <insert id="addUsers" parameterType="com.lyms.platform.permission.model.Users"> |
30 | 31 | <selectKey order="AFTER" keyProperty="id" resultType="java.lang.Integer"> SELECT LAST_INSERT_ID() </selectKey> |
31 | -insert into users (foreign_id,logincenter_id,type,org_id,dept_id,name,account,pwd,phone,publish_id,publish_name,yn,enable,modified,created,remarks,last_login_time,ks_id) | |
32 | -values (#{foreignId},#{logincenterId},#{type},#{orgId},#{deptId},#{name},#{account},#{pwd},#{phone},#{publishId},#{publishName},#{yn},#{enable},#{modified},#{created},#{remarks},#{lastLoginTime},#{ksId}) | |
32 | +insert into users (foreign_id,logincenter_id,type,org_id,dept_id,name,account,pwd,phone,publish_id,publish_name,yn,enable,modified,created,remarks,last_login_time,ks_id,zhiChenId) | |
33 | +values (#{foreignId},#{logincenterId},#{type},#{orgId},#{deptId},#{name},#{account},#{pwd},#{phone},#{publishId},#{publishName},#{yn},#{enable},#{modified},#{created},#{remarks},#{lastLoginTime},#{ksId},#{zhiChenId}) | |
33 | 34 | </insert> |
34 | 35 | |
35 | 36 |