ai对话
This commit is contained in:
@@ -7,6 +7,7 @@
|
||||
<!-- 用户角色关系字段 -->
|
||||
<id column="user_id" property="userId" jdbcType="VARCHAR"/>
|
||||
<id column="role_id" property="roleId" jdbcType="VARCHAR"/>
|
||||
<id column="dept_id" property="deptId" jdbcType="VARCHAR"/>
|
||||
<!-- 基础字段 -->
|
||||
<result column="optsn" property="optsn" jdbcType="VARCHAR"/>
|
||||
<result column="creator" property="creator" jdbcType="VARCHAR"/>
|
||||
@@ -62,7 +63,7 @@
|
||||
|
||||
<!-- 基础列 -->
|
||||
<sql id="Base_Column_List">
|
||||
user_id, role_id,
|
||||
user_id, role_id, dept_id,
|
||||
optsn, creator, updater, dept_path, remark, create_time, update_time, delete_time, deleted
|
||||
</sql>
|
||||
|
||||
@@ -73,6 +74,7 @@
|
||||
<!-- 必填字段:user_id, role_id, optsn -->
|
||||
user_id,
|
||||
role_id,
|
||||
dept_id,
|
||||
optsn,
|
||||
<!-- 可选字段:基础字段按是否有值动态拼接 -->
|
||||
<if test="creator != null and creator != ''">creator,</if>
|
||||
@@ -88,6 +90,7 @@
|
||||
<!-- 必填字段值 -->
|
||||
#{userId},
|
||||
#{roleId},
|
||||
#{deptId},
|
||||
#{optsn},
|
||||
<!-- 可选字段值 -->
|
||||
<if test="creator != null and creator != ''">#{creator},</if>
|
||||
|
||||
Reference in New Issue
Block a user