fhx
2024-04-19 1b5fc79dd03377f95459878417514c1429336641
提交 | 用户 | age
177a5a 1 package com.hz.his.feign.service.phis;
C 2
3 import com.hx.resultTool.Result;
151057 4 import com.hz.phis.vo.money.MoneyRuleVo;
177a5a 5 import org.springframework.cloud.openfeign.FeignClient;
C 6 import org.springframework.web.bind.annotation.PostMapping;
151057 7 import org.springframework.web.bind.annotation.RequestBody;
177a5a 8 import org.springframework.web.bind.annotation.RequestParam;
C 9
10 import java.math.BigDecimal;
11
12 /**
13  * 资金到账规则
14  */
15 @FeignClient(name="phis-provider",path = "/p-his-data",contextId = "money-rule")
16 public interface SMoneyRuleService {
17
18     /**
151057 19      * @param moneyRuleVo 传参对象
C 20      * @return 返回,看代码
177a5a 21      */
C 22     @PostMapping(value = "/money-rule/list")
151057 23     Result getList(@RequestBody MoneyRuleVo moneyRuleVo);
177a5a 24
C 25 }