package com.crm.manager.service; import com.crm.rely.backend.core.dto.base.ResultWithPagerDto; import com.crm.rely.backend.model.dto.custom.fund.history.CustomFundHistoryDto; import com.crm.rely.backend.model.entity.custom.fund.history.CustomFundHistorySearchListEntity; import org.springframework.cloud.netflix.feign.FeignClient; import org.springframework.web.bind.annotation.PostMapping; @FeignClient(name = "GOLDEN-PAY-SERVICE", path = "/custom/fund/history/manager") public interface CustomFundHistoryFeignService { @PostMapping("/search/list") ResultWithPagerDto searchList(CustomFundHistorySearchListEntity entity) throws Exception; }