chengf
2026-01-27 b6184e2ddf3db37a94f7efb3b619bbc64642a292
java110-db/src/main/resources/mapper/fee/PayFeeConfigV1ServiceDaoImplMapper.xml
@@ -1,33 +1,34 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
        PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<!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,
        pay_online,scale,decimal_place,units
        ) values (
        #{feeTypeCd},#{computingFormula},#{additionalAmount},#{billType},#{computingFormulaText},#{squarePrice},
        #{paymentCd},#{isDefault},#{configId},#{feeFlag},#{feeName},#{paymentCycle},#{startTime},#{endTime},#{communityId},#{deductFrom},
        #{payOnline},#{scale},#{decimalPlace},#{units}
        )
        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, pay_online, scale, decimal_place,
        units, prepayment_period,state,secondary_fee_type_cd)
        values (#{feeTypeCd}, #{computingFormula}, #{additionalAmount}, #{billType}, #{computingFormulaText},
        #{squarePrice}, #{paymentCd}, #{isDefault}, #{configId}, #{feeFlag}, #{feeName}, #{paymentCycle},
        #{startTime}, #{endTime}, #{communityId}, #{deductFrom}, #{payOnline}, #{scale}, #{decimalPlace},
        #{units}, #{prepaymentPeriod},#{state},#{secondaryFeeTypeCd})
    </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
        select t.fee_type_cd,t.fee_type_cd feeTypeCd,t.secondary_fee_type_cd,t.secondary_fee_type_cd secondaryFeeTypeCd,s.secondary_fee_type_cd_name,s.secondary_fee_type_cd_name secondaryFeeTypeCdName,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,
        t.pay_online payOnline,t.scale,t.decimal_place decimalPlace,t.units
        t.pay_online payOnline,t.scale,t.decimal_place decimalPlace,t.units,t.prepayment_period,t.prepayment_period
        prepaymentPeriod,
        t.state
        from pay_fee_config t
        left join secondary_fee_type_cd_tb s on s.secondary_fee_type_cd = t.secondary_fee_type_cd
        where 1 =1
        <if test="feeTypeCd !=null and feeTypeCd != ''">
            and t.fee_type_cd= #{feeTypeCd}
@@ -72,6 +73,9 @@
        <if test="feeName !=null and feeName != ''">
            and t.fee_name= #{feeName}
        </if>
        <if test="feeNameEq !=null and feeNameEq != ''">
            and t.fee_name = #{feeNameEq}
        </if>
        <if test="paymentCycle !=null and paymentCycle != ''">
            and t.payment_cycle= #{paymentCycle}
        </if>
@@ -82,18 +86,22 @@
            and t.end_time= #{endTime}
        </if>
        <if test="communityId !=null and communityId != ''">
            and t.community_id= #{communityId}
            and t.community_id in (#{communityId}, '9999')
        </if>
        <if test="deductFrom !=null and deductFrom != ''">
            and t.deduct_from = #{deductFrom}
        </if>
        <if test="prepaymentPeriod !=null and prepaymentPeriod != ''">
            and t.prepayment_period = #{prepaymentPeriod}
        </if>
        <if test="state !=null and state != ''">
            and t.state = #{state}
        </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">
@@ -103,6 +111,9 @@
        </if>
        <if test="feeTypeCd !=null and feeTypeCd != ''">
            , t.fee_type_cd= #{feeTypeCd}
        </if>
        <if test="secondaryFeeTypeCd !=null and secondaryFeeTypeCd != ''">
            , t.secondary_fee_type_cd= #{secondaryFeeTypeCd}
        </if>
        <if test="computingFormula !=null and computingFormula != ''">
            , t.computing_formula= #{computingFormula}
@@ -140,9 +151,7 @@
        <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>
@@ -158,11 +167,19 @@
        <if test="units !=null and units != ''">
            , t.units= #{units}
        </if>
        <if test="prepaymentPeriod !=null and prepaymentPeriod != ''">
            , t.prepayment_period = #{prepaymentPeriod}
        </if>
        <if test="state !=null and state != ''">
            , t.state = #{state}
        </if>
        where 1=1
        <if test="configId !=null and configId != ''">
            and t.config_id= #{configId}
        </if>
        <if test="communityId !=null and communityId != ''">
            and t.community_id in (#{communityId}, '9999')
        </if>
    </update>
    <!-- 查询收费项目数量 add by wuxw 2018-07-03 -->
@@ -213,6 +230,9 @@
        <if test="feeName !=null and feeName != ''">
            and t.fee_name= #{feeName}
        </if>
        <if test="feeNameEq !=null and feeNameEq != ''">
            and t.fee_name = #{feeNameEq}
        </if>
        <if test="paymentCycle !=null and paymentCycle != ''">
            and t.payment_cycle= #{paymentCycle}
        </if>
@@ -223,12 +243,17 @@
            and t.end_time= #{endTime}
        </if>
        <if test="communityId !=null and communityId != ''">
            and t.community_id= #{communityId}
            and t.community_id in (#{communityId}, '9999')
        </if>
        <if test="deductFrom !=null and deductFrom != ''">
            and t.deduct_from = #{deductFrom}
        </if>
        <if test="prepaymentPeriod !=null and prepaymentPeriod != ''">
            and t.prepayment_period = #{prepaymentPeriod}
        </if>
        <if test="state !=null and state != ''">
            and t.state = #{state}
        </if>
    </select>
    <!-- 查询收费项目数量 add by wuxw 2018-07-03 -->
@@ -240,9 +265,12 @@
        left join pay_fee_attrs pfa2 on t.fee_id = pfa2.fee_id and pfa2.status_cd = '0' and pfa2.spec_cd = '390009'
        where t.config_id = #{configId}
        <if test="payerObjType != null and payerObjType != ''">
           and t.payer_obj_type= #{payerObjType}
            and t.payer_obj_type= #{payerObjType}
        </if>
        and t.community_id= #{communityId}
        <if test="communityId != null and communityId != ''">
            and t.community_id in (#{communityId}, '9999')
        </if>
    </select>
    <!-- 查询收费项目信息 add by wuxw 2018-07-03 -->
@@ -254,14 +282,26 @@
        left join pay_fee_attrs pfa1 on t.fee_id = pfa1.fee_id and pfa1.status_cd = '0' and pfa1.spec_cd = '390008'
        left join pay_fee_attrs pfa2 on t.fee_id = pfa2.fee_id and pfa2.status_cd = '0' and pfa2.spec_cd = '390009'
        where t.config_id = #{configId}
        and t.community_id= #{communityId}
        <if test="communityId != null and communityId != ''">
            and t.community_id in (#{communityId}, '9999')
        </if>
        <if test="payerObjType != null and payerObjType != ''">
           and t.payer_obj_type= #{payerObjType}
            and t.payer_obj_type= #{payerObjType}
        </if>
        order by t.create_time desc
        <if test="page != -1 and page != null ">
            limit #{page}, #{row}
        </if>
    </select>
    <select id="getFeeCd" resultType="Map" parameterType="Map">
        SELECT
            d1.status_cd
        FROM
            t_dict d1
                JOIN
            t_dict d2 ON d1.name = d2.name
        WHERE
            d2.status_cd = #{feeTypeCd}
          AND d1.status_cd != #{feeTypeCd};
    </select>
</mapper>