From 428519bd1056dd90cd4589dbf85b380e403ff254 Mon Sep 17 00:00:00 2001 From: hjl <1657978663@qq.com> Date: 星期五, 05 七月 2024 18:13:08 +0800 Subject: [PATCH] feat: 代码初始化、腾讯云短信SDK --- ruoyi-api/ruoyi-api-admin/src/main/java/com/ruoyi/admin/api/feignClient/AdminClient.java | 31 ++++++++++++++++++++----------- 1 files changed, 20 insertions(+), 11 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..fede35e 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,15 +43,24 @@ * @param changeDispatch 改派信息 * @return 详细数据 */ - @PostMapping(value = "/admin/changeDispatch/save") - R<Boolean> changeDispatchSave(@RequestBody ExchangeDispatch changeDispatch); + @PostMapping(value = "/changeDispatch/changeDispatchSave") + R<Boolean> changeDispatchSave(@RequestBody ChangeDispatch changeDispatch); + + /** + * 订单改派详情 + * + * @param id 订单id + * @return 改派订单 + */ + @GetMapping(value = "/changeDispatch/changeDispatchOne") + R<ChangeDispatch> changeDispatchOne(@RequestParam("id") Integer id); /** * 系统通知列表 * * @return 通知公告列表 */ - @GetMapping(value = "/admin/notices/list") + @GetMapping(value = "/notices/list") R<List<Notices>> noticesList(); /** @@ -59,7 +68,7 @@ * * @return 轮播图列表 */ - @GetMapping(value = "/admin/rotate/bannerList") + @GetMapping(value = "/rotate/bannerList") R<List<Rotate>> bannerList(); /** @@ -67,7 +76,7 @@ * * @return 服务优势列表 */ - @GetMapping(value = "/admin/advantage/advantageList") + @GetMapping(value = "/advantage/advantageList") R<List<ServeAdvantage>> advantageList(); /** @@ -75,7 +84,7 @@ * * @return 列表 */ - @GetMapping(value = "/admin/problem/problemList") + @GetMapping(value = "/problem/problemList") R<List<Problem>> problemList(); /** @@ -83,7 +92,7 @@ * * @return 奖品列表 */ - @GetMapping(value = "/admin/prize/list") + @GetMapping(value = "/prize/prizeList") R<List<Prize>> prizeList(); /** @@ -91,7 +100,7 @@ * * @return 操作结果 */ - @GetMapping(value = "/withdrawProcess") - R<WithdrawalSetting> withdrawProcess(); + @GetMapping(value = "/userManage/withdrawProcess") + R<WithdrawalSetting> withdrawProcess(); } -- Gitblit v1.7.1