| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218 |
- <?xml version="1.0" encoding="UTF-8" ?>
- <!DOCTYPE mapper
- PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
- "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
- <mapper namespace="payFeeConfigV1ServiceDaoImpl">
- <!-- 保存收费项目信息 add by wuxw 2018-07-03 -->
- <insert id="savePayFeeConfigInfo" parameterType="Map">
- insert into pay_fee_config(
- fee_type_cd,computing_formula,additional_amount,bill_type,computing_formula_text,square_price,payment_cd,is_default,config_id,fee_flag,fee_name,payment_cycle,start_time,end_time,community_id,deduct_from
- ) values (
- #{feeTypeCd},#{computingFormula},#{additionalAmount},#{billType},#{computingFormulaText},#{squarePrice},#{paymentCd},#{isDefault},#{configId},#{feeFlag},#{feeName},#{paymentCycle},#{startTime},#{endTime},#{communityId},#{deductFrom}
- )
- </insert>
- <!-- 查询收费项目信息 add by wuxw 2018-07-03 -->
- <select id="getPayFeeConfigInfo" parameterType="Map" resultType="Map">
- select t.fee_type_cd,t.fee_type_cd feeTypeCd,t.computing_formula,t.computing_formula
- computingFormula,t.additional_amount,t.additional_amount additionalAmount,t.bill_type,t.bill_type
- billType,t.computing_formula_text,t.computing_formula_text computingFormulaText,t.status_cd,t.status_cd
- statusCd,t.square_price,t.square_price squarePrice,t.payment_cd,t.payment_cd paymentCd,t.is_default,t.is_default
- isDefault,t.config_id,t.config_id configId,t.fee_flag,t.fee_flag feeFlag,t.fee_name,t.fee_name
- feeName,t.payment_cycle,t.payment_cycle paymentCycle,t.start_time,t.start_time startTime,t.end_time,t.end_time
- endTime,t.community_id,t.community_id communityId,t.deduct_from,t.deduct_from deductFrom
- from pay_fee_config t
- where 1 =1
- <if test="feeTypeCd !=null and feeTypeCd != ''">
- and t.fee_type_cd= #{feeTypeCd}
- </if>
- <if test="computingFormula !=null and computingFormula != ''">
- and t.computing_formula= #{computingFormula}
- </if>
- <if test="additionalAmount !=null and additionalAmount != ''">
- and t.additional_amount= #{additionalAmount}
- </if>
- <if test="billType !=null and billType != ''">
- and t.bill_type= #{billType}
- </if>
- <if test="computingFormulaText !=null and computingFormulaText != ''">
- and t.computing_formula_text= #{computingFormulaText}
- </if>
- <if test="statusCd !=null and statusCd != ''">
- and t.status_cd= #{statusCd}
- </if>
- <if test="squarePrice !=null and squarePrice != ''">
- and t.square_price= #{squarePrice}
- </if>
- <if test="paymentCd !=null and paymentCd != ''">
- and t.payment_cd= #{paymentCd}
- </if>
- <if test="isDefault !=null and isDefault != ''">
- and t.is_default= #{isDefault}
- </if>
- <if test="configId !=null and configId != ''">
- and t.config_id= #{configId}
- </if>
- <if test="configIds != null">
- and t.config_id in
- <foreach collection="configIds" open="(" close=")"
- separator="," item="item">
- #{item}
- </foreach>
- </if>
- <if test="feeFlag !=null and feeFlag != ''">
- and t.fee_flag= #{feeFlag}
- </if>
- <if test="feeName !=null and feeName != ''">
- and t.fee_name= #{feeName}
- </if>
- <if test="paymentCycle !=null and paymentCycle != ''">
- and t.payment_cycle= #{paymentCycle}
- </if>
- <if test="startTime !=null and startTime != ''">
- and t.start_time= #{startTime}
- </if>
- <if test="endTime !=null and endTime != ''">
- and t.end_time= #{endTime}
- </if>
- <if test="communityId !=null and communityId != ''">
- and t.community_id= #{communityId}
- </if>
- <if test="deductFrom !=null and deductFrom != ''">
- and t.deduct_from = #{deductFrom}
- </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="updatePayFeeConfigInfo" parameterType="Map">
- update pay_fee_config t set t.status_cd = #{statusCd}
- <if test="newBId != null and newBId != ''">
- ,t.b_id = #{newBId}
- </if>
- <if test="feeTypeCd !=null and feeTypeCd != ''">
- , t.fee_type_cd= #{feeTypeCd}
- </if>
- <if test="computingFormula !=null and computingFormula != ''">
- , t.computing_formula= #{computingFormula}
- </if>
- <if test="additionalAmount !=null and additionalAmount != ''">
- , t.additional_amount= #{additionalAmount}
- </if>
- <if test="billType !=null and billType != ''">
- , t.bill_type= #{billType}
- </if>
- <if test="computingFormulaText !=null and computingFormulaText != ''">
- , t.computing_formula_text= #{computingFormulaText}
- </if>
- <if test="squarePrice !=null and squarePrice != ''">
- , t.square_price= #{squarePrice}
- </if>
- <if test="paymentCd !=null and paymentCd != ''">
- , t.payment_cd= #{paymentCd}
- </if>
- <if test="isDefault !=null and isDefault != ''">
- , t.is_default= #{isDefault}
- </if>
- <if test="feeFlag !=null and feeFlag != ''">
- , t.fee_flag= #{feeFlag}
- </if>
- <if test="feeName !=null and feeName != ''">
- , t.fee_name= #{feeName}
- </if>
- <if test="paymentCycle !=null and paymentCycle != ''">
- , t.payment_cycle= #{paymentCycle}
- </if>
- <if test="startTime !=null and startTime != ''">
- , t.start_time= #{startTime}
- </if>
- <if test="endTime !=null and endTime != ''">
- , t.end_time= #{endTime}
- </if>
- <if test="communityId !=null and communityId != ''">
- , t.community_id= #{communityId}
- </if>
- <if test="deductFrom !=null and deductFrom != ''">
- , t.deduct_from= #{deductFrom}
- </if>
- where 1=1
- <if test="configId !=null and configId != ''">
- and t.config_id= #{configId}
- </if>
- </update>
- <!-- 查询收费项目数量 add by wuxw 2018-07-03 -->
- <select id="queryPayFeeConfigsCount" parameterType="Map" resultType="Map">
- select count(1) count
- from pay_fee_config t
- where 1 =1
- <if test="feeTypeCd !=null and feeTypeCd != ''">
- and t.fee_type_cd= #{feeTypeCd}
- </if>
- <if test="computingFormula !=null and computingFormula != ''">
- and t.computing_formula= #{computingFormula}
- </if>
- <if test="additionalAmount !=null and additionalAmount != ''">
- and t.additional_amount= #{additionalAmount}
- </if>
- <if test="billType !=null and billType != ''">
- and t.bill_type= #{billType}
- </if>
- <if test="computingFormulaText !=null and computingFormulaText != ''">
- and t.computing_formula_text= #{computingFormulaText}
- </if>
- <if test="statusCd !=null and statusCd != ''">
- and t.status_cd= #{statusCd}
- </if>
- <if test="squarePrice !=null and squarePrice != ''">
- and t.square_price= #{squarePrice}
- </if>
- <if test="paymentCd !=null and paymentCd != ''">
- and t.payment_cd= #{paymentCd}
- </if>
- <if test="isDefault !=null and isDefault != ''">
- and t.is_default= #{isDefault}
- </if>
- <if test="configId !=null and configId != ''">
- and t.config_id= #{configId}
- </if>
- <if test="configIds !=null">
- and t.config_id in
- <foreach collection="configIds" open="(" close=")"
- separator="," item="item">
- #{item}
- </foreach>
- </if>
- <if test="feeFlag !=null and feeFlag != ''">
- and t.fee_flag= #{feeFlag}
- </if>
- <if test="feeName !=null and feeName != ''">
- and t.fee_name= #{feeName}
- </if>
- <if test="paymentCycle !=null and paymentCycle != ''">
- and t.payment_cycle= #{paymentCycle}
- </if>
- <if test="startTime !=null and startTime != ''">
- and t.start_time= #{startTime}
- </if>
- <if test="endTime !=null and endTime != ''">
- and t.end_time= #{endTime}
- </if>
- <if test="communityId !=null and communityId != ''">
- and t.community_id= #{communityId}
- </if>
- <if test="deductFrom !=null and deductFrom != ''">
- and t.deduct_from = #{deductFrom}
- </if>
- </select>
- </mapper>
|