Commit 7f0587dc by zhiwj

deleteFlag

parent 0c17e843
...@@ -239,7 +239,7 @@ public class AppletCustomPageApiServiceImpl implements AppletCustomPageApiServic ...@@ -239,7 +239,7 @@ public class AppletCustomPageApiServiceImpl implements AppletCustomPageApiServic
temp.setUpdateTime(now); temp.setUpdateTime(now);
temp.setSetting(json.toJSONString()); temp.setSetting(json.toJSONString());
temp.setPageId(pageId); temp.setPageId(pageId);
temp.setDeleteFlag(1); temp.setDeleteFlag(0);
componentList.add(temp); componentList.add(temp);
} }
} }
......
...@@ -185,7 +185,7 @@ ...@@ -185,7 +185,7 @@
<select id="listByPageId" resultMap="BaseResultMap"> <select id="listByPageId" resultMap="BaseResultMap">
SELECT <include refid="Base_Column_List"></include>, <include refid="Blob_Column_List"></include> SELECT <include refid="Base_Column_List"></include>, <include refid="Blob_Column_List"></include>
from tab_applet_page_component from tab_applet_page_component
where delete_flag = 1 where delete_flag = 0
and page_id = #{pageId} and page_id = #{pageId}
order by component_index order by component_index
......
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