|
|
|
@ -10,6 +10,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<result property="paramTitle" column="Param_Title" />
|
|
|
|
|
<result property="paramText" column="Param_Text" />
|
|
|
|
|
<result property="enableFlag" column="Enable_Flag" />
|
|
|
|
|
<result property="visibleFlag" column="Visible_Flag" />
|
|
|
|
|
<result property="orderFlag" column="Order_Flag" />
|
|
|
|
|
<result property="createBy" column="Create_By" />
|
|
|
|
|
<result property="createTime" column="Create_Time" />
|
|
|
|
|
<result property="updateBy" column="Update_By" />
|
|
|
|
@ -17,7 +19,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
</resultMap>
|
|
|
|
|
|
|
|
|
|
<sql id="selectSysParamConfigVo">
|
|
|
|
|
select ObjId, Param_Type, Param_Title, Param_Text, Enable_Flag, Create_By, Create_Time, Update_By, Update_Time from sys_param_config
|
|
|
|
|
select ObjId, Param_Type, Param_Title, Param_Text, Enable_Flag, Create_By, Create_Time, Update_By, Update_Time,Visible_Flag,Order_Flag from sys_param_config
|
|
|
|
|
</sql>
|
|
|
|
|
|
|
|
|
|
<select id="selectSysParamConfigList" parameterType="SysParamConfig" resultMap="SysParamConfigResult">
|
|
|
|
@ -27,6 +29,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<if test="paramTitle != null and paramTitle != ''"> and Param_Title = #{paramTitle}</if>
|
|
|
|
|
<if test="paramText != null and paramText != ''"> and Param_Text = #{paramText}</if>
|
|
|
|
|
<if test="enableFlag != null "> and Enable_Flag = #{enableFlag}</if>
|
|
|
|
|
<if test="visibleFlag != null "> and Visible_Flag = #{visibleFlag}</if>
|
|
|
|
|
</where>
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
@ -42,6 +45,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<if test="paramTitle != null">Param_Title,</if>
|
|
|
|
|
<if test="paramText != null">Param_Text,</if>
|
|
|
|
|
<if test="enableFlag != null">Enable_Flag,</if>
|
|
|
|
|
<if test="visibleFlag != null">Visible_Flag,</if>
|
|
|
|
|
<if test="orderFlag != null">Order_Flag,</if>
|
|
|
|
|
<if test="createBy != null">Create_By,</if>
|
|
|
|
|
<if test="createTime != null">Create_Time,</if>
|
|
|
|
|
<if test="updateBy != null">Update_By,</if>
|
|
|
|
@ -52,6 +57,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<if test="paramTitle != null">#{paramTitle},</if>
|
|
|
|
|
<if test="paramText != null">#{paramText},</if>
|
|
|
|
|
<if test="enableFlag != null">#{enableFlag},</if>
|
|
|
|
|
<if test="visibleFlag != null">#{visibleFlag},</if>
|
|
|
|
|
<if test="orderFlag != null">#{orderFlag},</if>
|
|
|
|
|
<if test="createBy != null">#{createBy},</if>
|
|
|
|
|
<if test="createTime != null">#{createTime},</if>
|
|
|
|
|
<if test="updateBy != null">#{updateBy},</if>
|
|
|
|
@ -66,6 +73,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<if test="paramTitle != null">Param_Title = #{paramTitle},</if>
|
|
|
|
|
<if test="paramText != null">Param_Text = #{paramText},</if>
|
|
|
|
|
<if test="enableFlag != null">Enable_Flag = #{enableFlag},</if>
|
|
|
|
|
<if test="visibleFlag != null">Visible_Flag = #{visibleFlag},</if>
|
|
|
|
|
<if test="orderFlag != null">Order_Flag = #{orderFlag},</if>
|
|
|
|
|
<if test="createBy != null">Create_By = #{createBy},</if>
|
|
|
|
|
<if test="createTime != null">Create_Time = #{createTime},</if>
|
|
|
|
|
<if test="updateBy != null">Update_By = #{updateBy},</if>
|
|
|
|
|