|
@@ -12,6 +12,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<result property="pageLink" column="page_link" />
|
|
|
<result property="componentData" column="component_data" />
|
|
|
<result property="htmlData" column="html_data" />
|
|
|
+ <result property="htmlUrl" column="html_url" />
|
|
|
<result property="multipleTreeParam" column="multiple_tree_param" />
|
|
|
<result property="tableId" column="table_id" />
|
|
|
<result property="remark" column="remark" />
|
|
@@ -30,7 +31,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
</resultMap>
|
|
|
|
|
|
<sql id="selectMobilePageDesignDataVo">
|
|
|
- select id, name, page_json, page_options, page_link,component_data,html_data,multiple_tree_param,table_id, remark, create_by_id, create_by, create_time, update_by_id, update_by, update_time, del_flag, data_approval_status, process_key, task_process_key, task_node_key from {DBNAME}.mobile_page_design_data
|
|
|
+ select id, name, page_json, page_options, page_link,component_data,html_data,html_url,multiple_tree_param,table_id, remark, create_by_id, create_by, create_time, update_by_id, update_by, update_time, del_flag, data_approval_status, process_key, task_process_key, task_node_key from {DBNAME}.mobile_page_design_data
|
|
|
</sql>
|
|
|
|
|
|
<select id="selectMobilePageDesignDataList" parameterType="com.zkqy.system.entity.MobilePageDesignData" resultMap="MobilePageDesignDataResult">
|
|
@@ -42,6 +43,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="pageLink != null and pageLink != ''"> and page_link = #{pageLink}</if>
|
|
|
<if test="componentData != null and componentData != ''"> and component_data = #{componentData}</if>
|
|
|
<if test="htmlData != null and htmlData != ''"> and html_data = #{htmlData}</if>
|
|
|
+ <if test="htmlUrl != null and htmlUrl != ''"> and html_url = #{htmlUrl}</if>
|
|
|
<if test="multipleTreeParam != null and multipleTreeParam != ''"> and multiple_tree_param = #{multipleTreeParam}</if>
|
|
|
<if test="tableId != null and tableId != ''"> and table_id = #{tableId}</if>
|
|
|
<if test="createById != null "> and create_by_id = #{createById}</if>
|
|
@@ -68,6 +70,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="pageLink != null">page_link,</if>
|
|
|
<if test="componentData != null">component_data,</if>
|
|
|
<if test="htmlData != null">html_data,</if>
|
|
|
+ <if test="htmlUrl != null">html_url,</if>
|
|
|
<if test="multipleTreeParam != null">multiple_tree_param,</if>
|
|
|
<if test="remark != null">remark,</if>
|
|
|
<if test="createById != null">create_by_id,</if>
|
|
@@ -89,6 +92,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="pageLink != null">#{pageLink},</if>
|
|
|
<if test="componentData != null">#{componentData},</if>
|
|
|
<if test="htmlData != null">#{htmlData},</if>
|
|
|
+ <if test="htmlUrl != null">#{htmlUrl},</if>
|
|
|
<if test="multipleTreeParam != null">#{multipleTreeParam},</if>
|
|
|
<if test="remark != null">#{remark},</if>
|
|
|
<if test="createById != null">#{createById},</if>
|
|
@@ -117,6 +121,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="pageLink != null">page_link = #{pageLink},</if>
|
|
|
<if test="componentData != null">component_data = #{componentData},</if>
|
|
|
<if test="htmlData != null">html_data = #{htmlData},</if>
|
|
|
+ <if test="htmlUrl != null">html_url = #{htmlUrl},</if>
|
|
|
<if test="multipleTreeParam != null">multiple_tree_param = #{multipleTreeParam},</if>
|
|
|
<if test="remark != null">remark = #{remark},</if>
|
|
|
<if test="createById != null">create_by_id = #{createById},</if>
|