| | |
| | | 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; |
| | |
| | | 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); |
| | | |
| | | } |