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