1.新增pc个人,企业单点登录;2.新增监管端单点登录。

This commit is contained in:
chenyanchang
2026-05-24 14:49:27 +08:00
parent fb3099e90f
commit b91d9a4033
10 changed files with 415 additions and 72 deletions

View File

@@ -170,6 +170,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="createBy != null and createBy != ''">create_by,</if>
<if test="remark != null and remark != ''">remark,</if>
<if test="idCard != null and idCard != ''">id_card,</if>
<if test="appUserId != null and appUserId != ''">app_user_id,</if>
create_time
)values(
<if test="userId != null and userId != ''">#{userId},</if>
@@ -185,6 +186,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="createBy != null and createBy != ''">#{createBy},</if>
<if test="remark != null and remark != ''">#{remark},</if>
<if test="idCard != null and idCard != ''">#{idCard},</if>
<if test="appUserId != null and appUserId != ''">#{appUserId},</if>
sysdate()
)
</insert>