chengf
2026-02-25 64b14b0549344f13b191e2c26ed199f62655c43f
java110-interface/src/main/java/com/java110/intf/fee/IFeeInnerServiceSMO.java
@@ -22,7 +22,7 @@
 * @Version 1.0
 * add by wuxw 2019/4/24
 **/
@FeignClient(name = "${java110.fee-service}", configuration = {FeignConfiguration.class})
@FeignClient(name = "fee-service", configuration = {FeignConfiguration.class})
@RequestMapping("/feeApi")
public interface IFeeInnerServiceSMO {
@@ -208,4 +208,12 @@
     */
    @RequestMapping(value = "/deleteFeesByBatch", method = RequestMethod.POST)
    int deleteFeesByBatch(@RequestBody PayFeePo payFeePo);
    int getFeeInfoBus(FeeDto feeDto);
    /**
     * 根据费用配置id查询有效的费用关联
     */
    @RequestMapping(value = "/countValidPayFeeByConfigId", method = RequestMethod.POST)
    int countValidPayFeeByConfigId(@RequestBody String configId);
}