chengf
2025-08-04 1aed87083c1153c1ff2e559e01100213dd5bfa43
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.java110.intf.report;
 
import com.java110.config.feign.FeignConfiguration;
import com.java110.po.reportFee.ReportFeeMonthStatisticsPrepaymentPo;
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;
 
@FeignClient(name = "report-service", configuration = {FeignConfiguration.class})
@RequestMapping("/generatorFeeMonthStatisticsPrepaymentApi")
public interface IGeneratorFeeMonthStatisticsPrepaymentInnerServiceSMO {
 
    @RequestMapping(value = "/generatorPrepaymentData", method = RequestMethod.POST)
    public int generatorData(@RequestBody ReportFeeMonthStatisticsPrepaymentPo reportFeeMonthStatisticsPrepaymentPo);
 
}