package com.java110.intf.fee; import com.java110.config.feign.FeignConfiguration; import com.java110.dto.fee.TempCarFeeConfigDto; import com.java110.vo.FeeQueryParams; import org.springframework.cloud.openfeign.FeignClient; import org.springframework.http.ResponseEntity; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; import java.util.List; import java.util.Map; @FeignClient(name = "fee-service", configuration = {FeignConfiguration.class}) @RequestMapping("/reportFeeMonthStatisticsApi") public interface IReportFeeInnerServiceSMO { List repostPaidInFee(FeeQueryParams feeQueryParams); List repostPaidInFeeTwo(FeeQueryParams feeQueryParams); }