fhx
2024-07-13 adb2092bdfa0395c55d50449291d5d0734f8b2c6
phis-feign/src/main/java/com/hz/his/feign/service/phis/SMoneyRuleService.java
@@ -1,8 +1,10 @@
package com.hz.his.feign.service.phis;
import com.hx.resultTool.Result;
import com.hz.phis.vo.money.MoneyRuleVo;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestParam;
import java.math.BigDecimal;
@@ -10,14 +12,14 @@
/**
 * 资金到账规则
 */
@FeignClient(name="phis-provider",path = "/p-his-data",contextId = "money-rule")
@FeignClient(name="phi-platform-user",path = "/p-his-data",contextId = "money-rule")
public interface SMoneyRuleService {
    /**
     * @param functionCode 功能编号
     * @return
     * @param moneyRuleVo 传参对象
     * @return 返回,看代码
     */
    @PostMapping(value = "/money-rule/list")
    Result getList(@RequestParam("functionCode") String functionCode);
    Result getList(@RequestBody MoneyRuleVo moneyRuleVo);
}