|
@@ -67,7 +67,7 @@
|
|
|
<select id="selectAllByPageForNoMoney" resultMap="BaseResultMap">
|
|
|
select
|
|
|
<include refid="Base_Column_List_app_secret" />
|
|
|
- from t_customer
|
|
|
+ from t_customer t
|
|
|
<where>
|
|
|
<if test="customer.customerName != null and customer.customerName != ''">
|
|
|
and customer_name = BINARY #{customer.customerName}
|
|
@@ -76,14 +76,33 @@
|
|
|
and company LIKE BINARY CONCAT('%',#{customer.company},'%')
|
|
|
</if>
|
|
|
<if test="customer.moneyUpper != null and customer.moneyUpper != ''">
|
|
|
- and #{customer.moneyUpper}>=account_balance
|
|
|
+ and #{customer.moneyUpper}>=t.account_balance
|
|
|
</if>
|
|
|
<if test="customer.moneyLower != null and customer.moneyLower != ''">
|
|
|
- and account_balance>=#{customer.moneyLower}
|
|
|
+ and t.account_balance>=#{customer.moneyLower}
|
|
|
+ </if>
|
|
|
+ </where>
|
|
|
+ order by first_sign desc
|
|
|
+ </select>
|
|
|
+
|
|
|
+ <select id="selectAllByPageForNoMoneyByZero" resultMap="BaseResultMap">
|
|
|
+ select
|
|
|
+ <include refid="Base_Column_List_app_secret" />
|
|
|
+ from t_customer t
|
|
|
+ <where>
|
|
|
+ <if test="customer.customerName != null and customer.customerName != ''">
|
|
|
+ and customer_name = BINARY #{customer.customerName}
|
|
|
+ </if>
|
|
|
+ <if test="customer.company != null and customer.company != ''">
|
|
|
+ and company LIKE BINARY CONCAT('%',#{customer.company},'%')
|
|
|
</if>
|
|
|
+ and #{customer.moneyUpper} <![CDATA[>=]]> t.account_balance
|
|
|
+ and t.account_balance <![CDATA[<=]]> #{customer.moneyLower}
|
|
|
</where>
|
|
|
order by first_sign desc
|
|
|
</select>
|
|
|
+
|
|
|
+
|
|
|
<select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Integer" >
|
|
|
select
|
|
|
<include refid="Base_Column_List" />
|