From f14c50cb0036d3ddd655ce4e34732ba396a836c4 Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期二, 30 五月 2023 12:42:03 +0800
Subject: [PATCH] optimize 统计
---
java110-db/src/main/resources/mapper/fee/FeeDiscountRuleServiceDaoImplMapper.xml | 142 ++++++++++++++++++++++++----------------------
1 files changed, 74 insertions(+), 68 deletions(-)
diff --git a/java110-db/src/main/resources/mapper/fee/FeeDiscountRuleServiceDaoImplMapper.xml b/java110-db/src/main/resources/mapper/fee/FeeDiscountRuleServiceDaoImplMapper.xml
old mode 100644
new mode 100755
index e260879..b63c207
--- a/java110-db/src/main/resources/mapper/fee/FeeDiscountRuleServiceDaoImplMapper.xml
+++ b/java110-db/src/main/resources/mapper/fee/FeeDiscountRuleServiceDaoImplMapper.xml
@@ -5,93 +5,99 @@
<mapper namespace="feeDiscountRuleServiceDaoImpl">
-
-
-
<!-- 淇濆瓨璐圭敤鎶樻墸瑙勫垯淇℃伅 add by wuxw 2018-07-03 -->
<insert id="saveFeeDiscountRuleInfo" parameterType="Map">
insert into fee_discount_rule(
-rule_name,remark,rule_id,bean_impl
-) values (
-#{ruleName},#{remark},#{ruleId},#{beanImpl}
-)
+ rule_name,remark,rule_id,bean_impl,#{discount_type}
+ ) values (
+ #{ruleName},#{remark},#{ruleId},#{beanImpl},#{discountType}
+ )
</insert>
-
<!-- 鏌ヨ璐圭敤鎶樻墸瑙勫垯淇℃伅 add by wuxw 2018-07-03 -->
<select id="getFeeDiscountRuleInfo" parameterType="Map" resultType="Map">
- select t.rule_name,t.rule_name ruleName,t.remark,t.status_cd,t.status_cd statusCd,t.rule_id,t.rule_id ruleId,t.bean_impl,t.bean_impl beanImpl
-from fee_discount_rule t
-where 1 =1
-<if test="ruleName !=null and ruleName != ''">
- and t.rule_name= #{ruleName}
-</if>
-<if test="remark !=null and remark != ''">
- and t.remark= #{remark}
-</if>
-<if test="statusCd !=null and statusCd != ''">
- and t.status_cd= #{statusCd}
-</if>
-<if test="ruleId !=null and ruleId != ''">
- and t.rule_id= #{ruleId}
-</if>
-<if test="beanImpl !=null and beanImpl != ''">
- and t.bean_impl= #{beanImpl}
-</if>
-order by t.create_time desc
-<if test="page != -1 and page != null ">
- limit #{page}, #{row}
-</if>
+ select t.rule_name,t.rule_name ruleName,t.remark,t.status_cd,t.status_cd statusCd,t.rule_id,t.rule_id
+ ruleId,t.bean_impl,t.bean_impl beanImpl,t.discount_type discountType,t.discount_small_type ,
+ t.discount_small_type discountSmallType
+ from fee_discount_rule t
+ where 1 = 1
+ <if test="ruleName !=null and ruleName != ''">
+ and t.rule_name= #{ruleName}
+ </if>
+ <if test="remark !=null and remark != ''">
+ and t.remark= #{remark}
+ </if>
+ <if test="statusCd !=null and statusCd != ''">
+ and t.status_cd= #{statusCd}
+ </if>
+ <if test="ruleId !=null and ruleId != ''">
+ and t.rule_id= #{ruleId}
+ </if>
+ <if test="beanImpl !=null and beanImpl != ''">
+ and t.bean_impl= #{beanImpl}
+ </if>
+ <if test="discountType !=null and discountType != ''">
+ and t.discount_type= #{discountType}
+ </if>
+ <if test="discountSmallType !=null and discountSmallType != ''">
+ and t.discount_small_type= #{discountSmallType}
+ </if>
+ order by t.create_time desc
+ <if test="page != -1 and page != null ">
+ limit #{page}, #{row}
+ </if>
</select>
-
-
<!-- 淇敼璐圭敤鎶樻墸瑙勫垯淇℃伅 add by wuxw 2018-07-03 -->
<update id="updateFeeDiscountRuleInfo" parameterType="Map">
- update fee_discount_rule t set t.status_cd = #{statusCd}
-<if test="newBId != null and newBId != ''">
-,t.b_id = #{newBId}
-</if>
-<if test="ruleName !=null and ruleName != ''">
-, t.rule_name= #{ruleName}
-</if>
-<if test="remark !=null and remark != ''">
-, t.remark= #{remark}
-</if>
-<if test="beanImpl !=null and beanImpl != ''">
-, t.bean_impl= #{beanImpl}
-</if>
- where 1=1 <if test="ruleId !=null and ruleId != ''">
-and t.rule_id= #{ruleId}
-</if>
+ update fee_discount_rule t set t.status_cd = #{statusCd}
+ <if test="newBId != null and newBId != ''">
+ ,t.b_id = #{newBId}
+ </if>
+ <if test="ruleName !=null and ruleName != ''">
+ , t.rule_name= #{ruleName}
+ </if>
+ <if test="remark !=null and remark != ''">
+ , t.remark= #{remark}
+ </if>
+ <if test="beanImpl !=null and beanImpl != ''">
+ , t.bean_impl= #{beanImpl}
+ </if>
+ where 1=1
+ <if test="ruleId !=null and ruleId != ''">
+ and t.rule_id= #{ruleId}
+ </if>
</update>
<!-- 鏌ヨ璐圭敤鎶樻墸瑙勫垯鏁伴噺 add by wuxw 2018-07-03 -->
- <select id="queryFeeDiscountRulesCount" parameterType="Map" resultType="Map">
- select count(1) count
-from fee_discount_rule t
-where 1 =1
-<if test="ruleName !=null and ruleName != ''">
- and t.rule_name= #{ruleName}
-</if>
-<if test="remark !=null and remark != ''">
- and t.remark= #{remark}
-</if>
-<if test="statusCd !=null and statusCd != ''">
- and t.status_cd= #{statusCd}
-</if>
-<if test="ruleId !=null and ruleId != ''">
- and t.rule_id= #{ruleId}
-</if>
-<if test="beanImpl !=null and beanImpl != ''">
- and t.bean_impl= #{beanImpl}
-</if>
+ <select id="queryFeeDiscountRulesCount" parameterType="Map" resultType="Map">
+ select count(1) count
+ from fee_discount_rule t
+ where 1 =1
+ <if test="ruleName !=null and ruleName != ''">
+ and t.rule_name= #{ruleName}
+ </if>
+ <if test="remark !=null and remark != ''">
+ and t.remark= #{remark}
+ </if>
+ <if test="statusCd !=null and statusCd != ''">
+ and t.status_cd= #{statusCd}
+ </if>
+ <if test="ruleId !=null and ruleId != ''">
+ and t.rule_id= #{ruleId}
+ </if>
+ <if test="beanImpl !=null and beanImpl != ''">
+ and t.bean_impl= #{beanImpl}
+ </if>
+ <if test="discountType !=null and discountType != ''">
+ and t.discount_type= #{discountType}
+ </if>
- </select>
+ </select>
</mapper>
--
Gitblit v1.8.0