freemark
This commit is contained in:
+2
-12
@@ -19,24 +19,14 @@
|
||||
|
||||
|
||||
|
||||
<select id="grid" parameterType="Accounts" resultType="Accounts">
|
||||
<select id="queryPageResults" parameterType="Accounts" resultType="Accounts">
|
||||
SELECT
|
||||
*
|
||||
FROM
|
||||
APP_ACCOUNTS
|
||||
ACCOUNTS
|
||||
WHERE
|
||||
(1=1)
|
||||
<include refid="where_statement"/>
|
||||
</select>
|
||||
|
||||
<select id="count" parameterType="Accounts" resultType="java.lang.Integer">
|
||||
SELECT
|
||||
COUNT(*)
|
||||
FROM
|
||||
APP_ACCOUNTS
|
||||
WHERE
|
||||
(1=1)
|
||||
<include refid="where_statement"/>
|
||||
</select>
|
||||
|
||||
</mapper>
|
||||
+1
-12
@@ -24,7 +24,7 @@
|
||||
</sql>
|
||||
|
||||
|
||||
<select id="grid" parameterType="Applications" resultType="Applications">
|
||||
<select id="queryPageResults" parameterType="Applications" resultType="Applications">
|
||||
SELECT
|
||||
*
|
||||
FROM
|
||||
@@ -35,16 +35,5 @@
|
||||
ORDER BY SORTORDER
|
||||
</select>
|
||||
|
||||
<select id="count" parameterType="Applications" resultType="java.lang.Integer">
|
||||
SELECT
|
||||
COUNT(*)
|
||||
FROM
|
||||
APPLICATIONS
|
||||
WHERE
|
||||
(1=1)
|
||||
<include refid="where_statement"/>
|
||||
|
||||
</select>
|
||||
|
||||
|
||||
</mapper>
|
||||
+1
-12
@@ -13,7 +13,7 @@
|
||||
|
||||
|
||||
|
||||
<select id="grid" parameterType="Groups" resultType="Groups">
|
||||
<select id="queryPageResults" parameterType="Groups" resultType="Groups">
|
||||
SELECT
|
||||
*
|
||||
FROM
|
||||
@@ -23,17 +23,6 @@
|
||||
<include refid="where_statement"/>
|
||||
</select>
|
||||
|
||||
<select id="count" parameterType="Groups" resultType="java.lang.Integer">
|
||||
SELECT
|
||||
COUNT(*)
|
||||
FROM
|
||||
GROUPS
|
||||
WHERE
|
||||
(1=1)
|
||||
<include refid="where_statement"/>
|
||||
</select>
|
||||
|
||||
|
||||
|
||||
<update id="logisticDelete" parameterType="Groups" >
|
||||
UPDATE GROUPS SET
|
||||
|
||||
Reference in New Issue
Block a user