From 71fca447b76d88b45ef5c24b47a9428a517c4499 Mon Sep 17 00:00:00 2001 From: mitao <2763622819@qq.com> Date: 星期四, 03 四月 2025 14:33:31 +0800 Subject: [PATCH] 管理后台-门店管理 --- cloud-server-account/src/main/java/com/dsh/account/feignclient/other/HonorDeClient.java | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/cloud-server-account/src/main/java/com/dsh/account/feignclient/other/HonorDeClient.java b/cloud-server-account/src/main/java/com/dsh/account/feignclient/other/HonorDeClient.java index 4bbd241..e1c279e 100644 --- a/cloud-server-account/src/main/java/com/dsh/account/feignclient/other/HonorDeClient.java +++ b/cloud-server-account/src/main/java/com/dsh/account/feignclient/other/HonorDeClient.java @@ -1,5 +1,6 @@ package com.dsh.account.feignclient.other; +import com.dsh.account.entity.HonorRules; import com.dsh.account.model.vo.medalDetail.StuMedalVo; import org.springframework.cloud.openfeign.FeignClient; import org.springframework.web.bind.annotation.PostMapping; @@ -10,7 +11,9 @@ @FeignClient(value = "mb-cloud-other") public interface HonorDeClient { - @PostMapping("/honor/stuHonors") + @PostMapping("/base/honor/stuHonors") public List<StuMedalVo> getStuHonors(@RequestBody List<Integer> honorIds); + @PostMapping("/base/honor/getHonor") + HonorRules getHonor(@RequestBody List<Integer> integers); } -- Gitblit v1.7.1