java110
2020-08-01 57cbb7df3dcd52707c8d284ecc035bafb190312d
java110-db/src/main/resources/mapper/fee/FeeConfigServiceDaoImplMapper.xml
@@ -191,6 +191,9 @@
        <if test="paymentCycle !=null and paymentCycle != ''">
            and t.payment_cycle= #{paymentCycle}
        </if>
        <if test="billType !=null and billType != ''">
            and t.bill_type= #{billType}
        </if>
        order by t.create_time desc
        <if test="page != -1 and page != null ">
            limit #{page}, #{row}
@@ -211,10 +214,10 @@
        <if test="computingFormula !=null and computingFormula != ''">
            , t.computing_formula= #{computingFormula}
        </if>
        <if test="additionalAmount !=null and additionalAmount != ''">
        <if test="additionalAmount !=null and additionalAmount != '' or additionalAmount == 0">
            , t.additional_amount= #{additionalAmount}
        </if>
        <if test="squarePrice !=null and squarePrice != ''">
        <if test="squarePrice !=null and squarePrice != '' or squarePrice == 0">
            , t.square_price= #{squarePrice}
        </if>
        <if test="paymentCd !=null and paymentCd != ''">
@@ -313,6 +316,9 @@
        <if test="paymentCycle !=null and paymentCycle != ''">
            and t.payment_cycle= #{paymentCycle}
        </if>
        <if test="billType !=null and billType != ''">
            and t.bill_type= #{billType}
        </if>
    </select>