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;
|
|
/**
|
* 资金到账规则
|
*/
|
@FeignClient(name="phis-provider",path = "/p-his-data",contextId = "money-rule")
|
public interface SMoneyRuleService {
|
|
/**
|
* @param moneyRuleVo 传参对象
|
* @return 返回,看代码
|
*/
|
@PostMapping(value = "/money-rule/list")
|
Result getList(@RequestBody MoneyRuleVo moneyRuleVo);
|
|
}
|