From 4430ceb824ac85a3b50108dadb2eac1e31d2c7d8 Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期六, 23 一月 2021 15:48:33 +0800
Subject: [PATCH] 优化 考勤编辑功能
---
java110-db/src/main/resources/mapper/fee/FeeDiscountRuleServiceDaoImplMapper.xml | 138 +++++++++++++++++++++++----------------------
1 files changed, 70 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
index e260879..e26f43a 100644
--- a/java110-db/src/main/resources/mapper/fee/FeeDiscountRuleServiceDaoImplMapper.xml
+++ b/java110-db/src/main/resources/mapper/fee/FeeDiscountRuleServiceDaoImplMapper.xml
@@ -5,93 +5,95 @@
<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
+ 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>
+ 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