From 45f4118f98840ff098e94a5072a9f937d3810a1c Mon Sep 17 00:00:00 2001 From: 18582019636 <1657978663@qq.com> Date: 星期五, 21 六月 2024 12:00:03 +0800 Subject: [PATCH] feat: 代码初始化 --- ruoyi-api/ruoyi-api-admin/src/main/java/com/ruoyi/admin/api/feignClient/AdminClient.java | 20 ++++++++++---------- 1 files changed, 10 insertions(+), 10 deletions(-) diff --git a/ruoyi-api/ruoyi-api-admin/src/main/java/com/ruoyi/admin/api/feignClient/AdminClient.java b/ruoyi-api/ruoyi-api-admin/src/main/java/com/ruoyi/admin/api/feignClient/AdminClient.java index 1da5305..84e9b47 100644 --- a/ruoyi-api/ruoyi-api-admin/src/main/java/com/ruoyi/admin/api/feignClient/AdminClient.java +++ b/ruoyi-api/ruoyi-api-admin/src/main/java/com/ruoyi/admin/api/feignClient/AdminClient.java @@ -25,7 +25,7 @@ * @param phone 手机号 * @return 订单信息 */ - @GetMapping(value = "/admin/order/queryList") + @GetMapping(value = "/order/queryList") R<List<Order>> queryList(@RequestParam("phone") String phone); /** @@ -34,7 +34,7 @@ * @param type 查询类型 * @return 详细数据 */ - @GetMapping(value = "/admin/agreement/dataInfo") + @GetMapping(value = "/agreement/dataInfo") R<Agreement> dataInfo(@RequestParam("type") Integer type); /** @@ -43,7 +43,7 @@ * @param changeDispatch 改派信息 * @return 详细数据 */ - @PostMapping(value = "/admin/changeDispatch/save") + @PostMapping(value = "/changeDispatch/save") R<Boolean> changeDispatchSave(@RequestBody ExchangeDispatch changeDispatch); /** @@ -51,7 +51,7 @@ * * @return 通知公告列表 */ - @GetMapping(value = "/admin/notices/list") + @GetMapping(value = "/notices/list") R<List<Notices>> noticesList(); /** @@ -59,7 +59,7 @@ * * @return 轮播图列表 */ - @GetMapping(value = "/admin/rotate/bannerList") + @GetMapping(value = "/rotate/bannerList") R<List<Rotate>> bannerList(); /** @@ -67,7 +67,7 @@ * * @return 服务优势列表 */ - @GetMapping(value = "/admin/advantage/advantageList") + @GetMapping(value = "/advantage/advantageList") R<List<ServeAdvantage>> advantageList(); /** @@ -75,7 +75,7 @@ * * @return 列表 */ - @GetMapping(value = "/admin/problem/problemList") + @GetMapping(value = "/problem/problemList") R<List<Problem>> problemList(); /** @@ -83,7 +83,7 @@ * * @return 奖品列表 */ - @GetMapping(value = "/admin/prize/list") + @GetMapping(value = "/prize/prizeList") R<List<Prize>> prizeList(); /** @@ -91,7 +91,7 @@ * * @return 操作结果 */ - @GetMapping(value = "/withdrawProcess") - R<WithdrawalSetting> withdrawProcess(); + @GetMapping(value = "/userManage/withdrawProcess") + R<WithdrawalSetting> withdrawProcess(); } -- Gitblit v1.7.1