Commit dbff1ef2 by guojuxing

装修页面修复:setting字段查询

parent 598f2452
...@@ -196,7 +196,10 @@ ...@@ -196,7 +196,10 @@
</update> </update>
<select id="listByParams" resultMap="BaseResultMap" parameterType="com.gic.enterprise.qo.AppletPageQO"> <select id="listByParams" resultMap="BaseResultMap" parameterType="com.gic.enterprise.qo.AppletPageQO">
select <include refid="Base_Column_List"></include> select
<include refid="Base_Column_List"></include>
,
<include refid="Blob_Column_List" />
from tab_applet_custom_page from tab_applet_custom_page
where status between 1 and 2 where status between 1 and 2
<if test="search != null and search != '' "> <if test="search != null and search != '' ">
...@@ -233,7 +236,10 @@ ...@@ -233,7 +236,10 @@
</update> </update>
<select id="listEnablePage" resultMap="BaseResultMap"> <select id="listEnablePage" resultMap="BaseResultMap">
select <include refid="Base_Column_List"></include> select
<include refid="Base_Column_List"></include>
,
<include refid="Blob_Column_List" />
from tab_applet_custom_page from tab_applet_custom_page
where status = 1 where status = 1
and enterprise_id = #{enterpriseId} and enterprise_id = #{enterpriseId}
...@@ -252,7 +258,10 @@ ...@@ -252,7 +258,10 @@
</select> </select>
<select id="getDefault" resultMap="BaseResultMap"> <select id="getDefault" resultMap="BaseResultMap">
select <include refid="Base_Column_List"></include> select
<include refid="Base_Column_List"></include>
,
<include refid="Blob_Column_List" />
from tab_applet_custom_page from tab_applet_custom_page
where status = 1 where status = 1
and enterprise_id = -1 and enterprise_id = -1
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment