|
|
@ -25,10 +25,10 @@
|
|
|
|
parameterType="com.glxp.api.entity.auth.SysRole">
|
|
|
|
parameterType="com.glxp.api.entity.auth.SysRole">
|
|
|
|
INSERT INTO auth_role(`role_name`, `role_key`, role_sort, data_scope
|
|
|
|
INSERT INTO auth_role(`role_name`, `role_key`, role_sort, data_scope
|
|
|
|
, menu_check_strictly, dept_check_strictly, status, del_flag, remark,
|
|
|
|
, menu_check_strictly, dept_check_strictly, status, del_flag, remark,
|
|
|
|
create_by, create_time, update_by)
|
|
|
|
create_by, create_time, update_by,isCustomer)
|
|
|
|
values (#{roleName},
|
|
|
|
values (#{roleName},
|
|
|
|
#{roleKey}, #{roleSort}, #{dataScope}, #{menuCheckStrictly}, #{deptCheckStrictly}, #{status}
|
|
|
|
#{roleKey}, #{roleSort}, #{dataScope}, #{menuCheckStrictly}, #{deptCheckStrictly}, #{status}
|
|
|
|
, #{delFlag}, #{remark}, #{createBy}, #{createTime}, #{updateBy})
|
|
|
|
, #{delFlag}, #{remark}, #{createBy}, #{createTime}, #{updateBy},#{isCustomer})
|
|
|
|
</insert>
|
|
|
|
</insert>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -42,6 +42,7 @@
|
|
|
|
<if test="menuCheckStrictly != null">menu_check_strictly=#{menuCheckStrictly},</if>
|
|
|
|
<if test="menuCheckStrictly != null">menu_check_strictly=#{menuCheckStrictly},</if>
|
|
|
|
<if test="deptCheckStrictly != null">`dept_check_strictly`=#{deptCheckStrictly},</if>
|
|
|
|
<if test="deptCheckStrictly != null">`dept_check_strictly`=#{deptCheckStrictly},</if>
|
|
|
|
<if test="status != null">`status`=#{status},</if>
|
|
|
|
<if test="status != null">`status`=#{status},</if>
|
|
|
|
|
|
|
|
<if test="isCustomer != null">`isCustomer`=#{isCustomer},</if>
|
|
|
|
<if test="delFlag != null">del_flag=#{delFlag},</if>
|
|
|
|
<if test="delFlag != null">del_flag=#{delFlag},</if>
|
|
|
|
<if test="remark != null">remark=#{remark},</if>
|
|
|
|
<if test="remark != null">remark=#{remark},</if>
|
|
|
|
<if test="createBy != null">create_by=#{createBy},</if>
|
|
|
|
<if test="createBy != null">create_by=#{createBy},</if>
|
|
|
|