|
|
@ -25,10 +25,10 @@
|
|
|
|
parameterType="com.glxp.api.entity.auth.SysCustomConfigDetailEntity">
|
|
|
|
parameterType="com.glxp.api.entity.auth.SysCustomConfigDetailEntity">
|
|
|
|
INSERT INTO sys_custom_config_detail
|
|
|
|
INSERT INTO sys_custom_config_detail
|
|
|
|
(id,configId,type,isShow, columnName,columnDesc,columnType,colorRule,sort,lableRule,width,tooltip,buttonRule,number,
|
|
|
|
(id,configId,type,isShow, columnName,columnDesc,columnType,colorRule,sort,lableRule,width,tooltip,buttonRule,number,
|
|
|
|
clickFuc,disabledFuc,expression,size,style,disabled,checkRules,inputType,lineNumber)
|
|
|
|
clickFuc,disabledFuc,expression,size,style,disabled,checkRules,inputType,lineNumber,dataFuc,isShowXx)
|
|
|
|
values (#{id},#{configId},#{type},#{isShow}, #{columnName},#{columnDesc},#{columnType},#{colorRule},#{sort},
|
|
|
|
values (#{id},#{configId},#{type},#{isShow}, #{columnName},#{columnDesc},#{columnType},#{colorRule},#{sort},
|
|
|
|
#{lableRule},#{width},#{tooltip},#{buttonRule},#{number},#{clickFuc},#{disabledFuc},#{expression},#{size},#{style},
|
|
|
|
#{lableRule},#{width},#{tooltip},#{buttonRule},#{number},#{clickFuc},#{disabledFuc},#{expression},#{size},#{style},
|
|
|
|
#{disabled}, #{checkRules}, #{inputType}, #{lineNumber})
|
|
|
|
#{disabled}, #{checkRules}, #{inputType}, #{lineNumber}, #{dataFuc},#{isShowXx})
|
|
|
|
</insert>
|
|
|
|
</insert>
|
|
|
|
|
|
|
|
|
|
|
|
<update id="updateSysCustomConfigDetail" parameterType="com.glxp.api.entity.auth.SysCustomConfigDetailEntity">
|
|
|
|
<update id="updateSysCustomConfigDetail" parameterType="com.glxp.api.entity.auth.SysCustomConfigDetailEntity">
|
|
|
@ -100,6 +100,12 @@
|
|
|
|
<if test="lineNumber != null">
|
|
|
|
<if test="lineNumber != null">
|
|
|
|
lineNumber=#{lineNumber},
|
|
|
|
lineNumber=#{lineNumber},
|
|
|
|
</if>
|
|
|
|
</if>
|
|
|
|
|
|
|
|
<if test="dataFuc != null">
|
|
|
|
|
|
|
|
dataFuc=#{dataFuc},
|
|
|
|
|
|
|
|
</if>
|
|
|
|
|
|
|
|
<if test="isShowXx != null">
|
|
|
|
|
|
|
|
isShowXx=#{isShowXx},
|
|
|
|
|
|
|
|
</if>
|
|
|
|
</set>
|
|
|
|
</set>
|
|
|
|
WHERE id = #{id}
|
|
|
|
WHERE id = #{id}
|
|
|
|
</update>
|
|
|
|
</update>
|
|
|
|