From 2862c3e4da3adbb4bea43151514f0c43b86476d6 Mon Sep 17 00:00:00 2001 From: mitao <2763622819@qq.com> Date: 星期六, 07 九月 2024 17:49:17 +0800 Subject: [PATCH] APP端冥想首页相关接口 --- xinquan-modules/xinquan-system/src/main/resources/mapper/system/SysUserMapper.xml | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/xinquan-modules/xinquan-system/src/main/resources/mapper/system/SysUserMapper.xml b/xinquan-modules/xinquan-system/src/main/resources/mapper/system/SysUserMapper.xml index 4e566a3..2c6a3e6 100644 --- a/xinquan-modules/xinquan-system/src/main/resources/mapper/system/SysUserMapper.xml +++ b/xinquan-modules/xinquan-system/src/main/resources/mapper/system/SysUserMapper.xml @@ -157,6 +157,7 @@ <if test="status != null and status != ''">status,</if> <if test="createBy != null and createBy != ''">create_by,</if> <if test="remark != null and remark != ''">remark,</if> + <if test="userType != null and userType != ''">user_type,</if> create_time )values( <if test="userId != null and userId != ''">#{userId},</if> @@ -171,6 +172,7 @@ <if test="status != null and status != ''">#{status},</if> <if test="createBy != null and createBy != ''">#{createBy},</if> <if test="remark != null and remark != ''">#{remark},</if> + <if test="userType != null and userType != ''">#{user_type},</if> sysdate() ) </insert> -- Gitblit v1.7.1