wuxw
2023-07-16 f76a285fe0ab8466282f77b883c5136072d5a9d8
加入费用项变更记录
2个文件已修改
16 ■■■■■ 已修改文件
java110-bean/src/main/java/com/java110/dto/fee/FeeConfigDto.java 10 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
java110-db/src/main/resources/mapper/fee/PayFeeConfigV1ServiceDaoImplMapper.xml 6 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
java110-bean/src/main/java/com/java110/dto/fee/FeeConfigDto.java
@@ -91,6 +91,8 @@
    private String userName;
    private String payerObjType;
    public String getFeeTypeCd() {
        return feeTypeCd;
@@ -365,4 +367,12 @@
    public void setUserName(String userName) {
        this.userName = userName;
    }
    public String getPayerObjType() {
        return payerObjType;
    }
    public void setPayerObjType(String payerObjType) {
        this.payerObjType = payerObjType;
    }
}
java110-db/src/main/resources/mapper/fee/PayFeeConfigV1ServiceDaoImplMapper.xml
@@ -239,6 +239,9 @@
        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}
        <if test="payerObjType != null and payerObjType != ''">
           and t.payer_obj_type= #{payerObjType}
        </if>
        and t.community_id= #{communityId}
    </select>
@@ -252,6 +255,9 @@
        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="payerObjType != null and payerObjType != ''">
           and t.payer_obj_type= #{payerObjType}
        </if>
        order by t.create_time desc
        <if test="page != -1 and page != null ">
            limit #{page}, #{row}