java110
2023-05-15 1727f490edc5940c38044bbd45503943580c5121
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package com.java110.intf.report;
 
import com.java110.config.feign.FeignConfiguration;
import com.java110.dto.fee.FeeDto;
import com.java110.po.reportFeeMonthStatistics.ReportFeeMonthStatisticsPo;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
 
/**
 * @ClassName IGeneratorFeeMonthStatisticsInnerServiceSMO
 * @Description TODO
 * @Author wuxw
 * @Date 2020/10/15 21:51
 * @Version 1.0
 * add by wuxw 2020/10/15
 **/
@FeignClient(name = "report-service", configuration = {FeignConfiguration.class})
@RequestMapping("/generatorOweFeeInnerServiceSMOApi")
public interface IGeneratorOweFeeInnerServiceSMO {
 
 
 
    @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);
}