chengf
2025-08-18 eb0d880929fccd4998d6b9836077961d1f975fea
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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<Map> repostPaidInFee(FeeQueryParams feeQueryParams);
}