From 0fdec9003ee06369547e306c3f15be2901da5cf4 Mon Sep 17 00:00:00 2001 From: fhx <308050795@qq.com> Date: 星期三, 24 四月 2024 12:40:03 +0800 Subject: [PATCH] 1.修改dto字段 --- phis-feign/src/main/java/com/hz/his/feign/service/phis/SMoneyRuleService.java | 8 +++++--- 1 files changed, 5 insertions(+), 3 deletions(-) diff --git a/phis-feign/src/main/java/com/hz/his/feign/service/phis/SMoneyRuleService.java b/phis-feign/src/main/java/com/hz/his/feign/service/phis/SMoneyRuleService.java index 3992df1..7d006bf 100644 --- a/phis-feign/src/main/java/com/hz/his/feign/service/phis/SMoneyRuleService.java +++ b/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; @@ -14,10 +16,10 @@ public interface SMoneyRuleService { /** - * @param functionCode 鍔熻兘缂栧彿 - * @return + * @param moneyRuleVo 浼犲弬瀵硅薄 + * @return 杩斿洖锛岀湅浠g爜 */ @PostMapping(value = "/money-rule/list") - Result getList(@RequestParam("functionCode") String functionCode); + Result getList(@RequestBody MoneyRuleVo moneyRuleVo); } -- Gitblit v1.8.0