java110
2023-08-15 20001a775126c1be95a2b84cebb8813a54608712
java110-interface/src/main/java/com/java110/intf/report/IGeneratorOweFeeInnerServiceSMO.java
@@ -1,7 +1,8 @@
package com.java110.intf.report;
import com.java110.config.feign.FeignConfiguration;
import com.java110.po.reportFeeMonthStatistics.ReportFeeMonthStatisticsPo;
import com.java110.dto.fee.FeeDto;
import com.java110.po.reportFee.ReportFeeMonthStatisticsPo;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
@@ -24,4 +25,11 @@
    @RequestMapping(value = "/generatorOweData", method = RequestMethod.POST)
    public int generatorOweData(@RequestBody ReportFeeMonthStatisticsPo reportFeeMonthStatisticsPo);
    /**
     * 计算单个费用欠费
     * @param feeDto
     * @return
     */
    @RequestMapping(value = "/computeOweFee", method = RequestMethod.POST)
    int computeOweFee(@RequestBody FeeDto feeDto);
}