fwq
2024-02-22 05e9aa8a610932d706d48257a36e95cec9de39fa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.hz.his.feign.service.phis;
 
import com.hx.resultTool.Result;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestParam;
 
import java.math.BigDecimal;
 
/**
 * 资金到账规则
 */
@FeignClient(name="phis-provider",path = "/p-his-data",contextId = "money-rule")
public interface SMoneyRuleService {
 
    /**
     * @param functionCode 功能编号
     * @return
     */
    @PostMapping(value = "/money-rule/list")
    Result getList(@RequestParam("functionCode") String functionCode);
 
}