From a1a51a92fd386ff07a7f05e40076508430a3c026 Mon Sep 17 00:00:00 2001 From: yanghui <2536613402@qq.com> Date: 星期二, 15 十一月 2022 14:30:33 +0800 Subject: [PATCH] #feat 订单、商品、用户地址、评价 接口新增 --- springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/ConvenientApi.java | 166 ++++++++++++++++++++++++++++++++----------------------- 1 files changed, 97 insertions(+), 69 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/ConvenientApi.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/ConvenientApi.java index 6e745b6..6a13ef5 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/ConvenientApi.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/ConvenientApi.java @@ -1,34 +1,17 @@ package com.panzhihua.service_community.api; -import java.time.Instant; -import java.util.List; - -import javax.annotation.Resource; -import javax.validation.Valid; - +import com.panzhihua.common.model.dtos.community.*; import com.panzhihua.common.model.dtos.community.convenient.*; -import com.panzhihua.service_community.service.*; -import org.springframework.web.bind.annotation.DeleteMapping; -import org.springframework.web.bind.annotation.GetMapping; -import org.springframework.web.bind.annotation.PostMapping; -import org.springframework.web.bind.annotation.PutMapping; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestParam; -import org.springframework.web.bind.annotation.RestController; - -import com.panzhihua.common.model.dtos.community.ComCvtBusinessDTO; -import com.panzhihua.common.model.dtos.community.ComCvtCategoryDTO; -import com.panzhihua.common.model.dtos.community.ComCvtServeDTO; -import com.panzhihua.common.model.dtos.community.PageComCvtBusinessAppletsDTO; -import com.panzhihua.common.model.dtos.community.PageComCvtBusinessDTO; -import com.panzhihua.common.model.dtos.community.PageComCvtCategoryDTO; -import com.panzhihua.common.model.dtos.community.PageComCvtServeDTO; import com.panzhihua.common.model.vos.R; import com.panzhihua.common.model.vos.community.ComCvtServeExcelVO; import com.panzhihua.common.model.vos.community.convenient.ConvenientMerchantVO; - +import com.panzhihua.service_community.service.*; import lombok.extern.slf4j.Slf4j; +import org.springframework.web.bind.annotation.*; + +import javax.annotation.Resource; +import javax.validation.Valid; +import java.util.List; /** * @description: 便民服务接口 @@ -70,8 +53,7 @@ /** * 社区后台分页查询便民服务商家 * - * @param pageComCvtBusinessDTO - * 查询参数 + * @param pageComCvtBusinessDTO 查询参数 * @return 返回结果 */ @PostMapping("/business/page") @@ -82,8 +64,7 @@ /** * 小程序通过便民服务区域分页查询便民服务商家 * - * @param comCvtBusinessAppletsDTO - * 查询参数 + * @param comCvtBusinessAppletsDTO 查询参数 * @return 返回结果 */ @PostMapping("/business/area/page") @@ -94,8 +75,7 @@ /** * 新增便民服务商家 * - * @param comCvtBusinessDTO - * 商家参数 + * @param comCvtBusinessDTO 商家参数 * @return 返回结果 */ @PostMapping("/business/add") @@ -106,8 +86,7 @@ /** * 编辑便民服务商家 * - * @param comCvtBusinessDTO - * 商家参数 + * @param comCvtBusinessDTO 商家参数 * @return 返回结果 */ @PutMapping("/business/put") @@ -118,8 +97,7 @@ /** * 查询便民服务商家详情 * - * @param id - * 商家主键 + * @param id 商家主键 * @return 返回结果 */ @GetMapping("/business/get") @@ -130,8 +108,7 @@ /** * 删除便民服务商家信息 * - * @param id - * 商家主键 + * @param id 商家主键 * @return 返回结果 */ @DeleteMapping("/business/delete") @@ -142,8 +119,7 @@ /** * 社区后台分页查询便民服务分类 * - * @param pageComCvtCategoryDTO - * 查询参数 + * @param pageComCvtCategoryDTO 查询参数 * @return 返回结果 */ @PostMapping("/category/page") @@ -153,7 +129,7 @@ /** * 便民服务分类下拉,所有分类 - * + * * @return 返回结果 */ @PostMapping("/category/all") @@ -164,8 +140,7 @@ /** * 新增便民服务分类 * - * @param comCvtCategoryDTO - * 分类参数 + * @param comCvtCategoryDTO 分类参数 * @return 返回结果 */ @PostMapping("/category/add") @@ -176,8 +151,7 @@ /** * 编辑便民服务分类 * - * @param comCvtCategoryDTO - * 分类参数 + * @param comCvtCategoryDTO 分类参数 * @return 返回结果 */ @PutMapping("/category/put") @@ -188,8 +162,7 @@ /** * 查询便民服务分类详情 * - * @param id - * 分类主键 + * @param id 分类主键 * @return 返回结果 */ @GetMapping("/category/get") @@ -200,8 +173,7 @@ /** * 删除便民服务分类信息 * - * @param id - * 分类主键 + * @param id 分类主键 * @return 返回结果 */ @DeleteMapping("/category/delete") @@ -212,8 +184,7 @@ /** * 社区后台分页查询便民服务 * - * @param pageComCvtServeDTO - * 查询参数 + * @param pageComCvtServeDTO 查询参数 * @return 返回结果 */ @PostMapping("/serve/page") @@ -224,8 +195,7 @@ /** * 新增便民服务 * - * @param comCvtServeDTO - * 参数 + * @param comCvtServeDTO 参数 * @return 返回结果 */ @PostMapping("/serve/add") @@ -236,8 +206,7 @@ /** * 编辑便民服务 * - * @param comCvtServeDTO - * 分类参数 + * @param comCvtServeDTO 分类参数 * @return 返回结果 */ @PutMapping("/serve/put") @@ -248,8 +217,7 @@ /** * 查询便民服务详情 * - * @param id - * 服务主键 + * @param id 服务主键 * @return 返回结果 */ @GetMapping("/serve/get") @@ -260,8 +228,7 @@ /** * 删除便民服务信息 * - * @param id - * 服务主键 + * @param id 服务主键 * @return 返回结果 */ @DeleteMapping("/serve/delete") @@ -271,9 +238,8 @@ /** * 小程序便民服务商家详情 - * - * @param id - * 商家ID + * + * @param id 商家ID * @return */ @GetMapping("/business/serve/get") @@ -283,18 +249,18 @@ /** * 批量新增商家服务 - * - * @param list - * 服务集合 + * + * @param list 服务集合 */ @PostMapping("/serve/import") public R listSaveConvenientServeExcelVO(@RequestBody List<ComCvtServeExcelVO> list, - @RequestParam(value = "communityId", required = false) Long communityId) { + @RequestParam(value = "communityId", required = false) Long communityId) { return comCvtServeService.listSaveConvenientServeExcelVO(list, communityId); } /** * 便民服务新增分类 + * * @param convenientServiceCategoryDTO * @return */ @@ -305,6 +271,7 @@ /** * 便民服务分类编辑 + * * @param convenientServiceCategoryDTO * @return */ @@ -315,6 +282,7 @@ /** * 便民服务分类删除 + * * @param categoryId * @return */ @@ -325,6 +293,7 @@ /** * 获取便民服务分类详情 + * * @param categoryId * @return */ @@ -335,6 +304,7 @@ /** * 分页查询便民服务分类 + * * @param pageConvenientServiceCategoryDTO * @return */ @@ -345,6 +315,7 @@ /** * 便民服务新增商家 + * * @param convenientMerchantDTO * @return */ @@ -355,6 +326,7 @@ /** * 编辑便民服务商家 + * * @param convenientMerchantDTO * @return */ @@ -365,6 +337,7 @@ /** * 删除便民服务商家 + * * @param merchantId * @return */ @@ -375,6 +348,7 @@ /** * 分页查询便民服务商家 运营后台 + * * @param pageConvenientMerchantDTO * @return */ @@ -385,6 +359,7 @@ /** * 获取便民服务商家详情 + * * @param merchantId * @return */ @@ -395,6 +370,7 @@ /** * 禁用/启用便民服务商家 + * * @param disableOrEnableConvenientMerchantDTO * @return */ @@ -405,6 +381,7 @@ /** * 重置便民服务商家账号密码 + * * @param resetPasswordConvenientMerchantDTO * @return */ @@ -415,6 +392,7 @@ /** * 获取所有便民服务分类 + * * @return */ @GetMapping("/service-category/all") @@ -424,6 +402,7 @@ /** * 获取用户便民服务商家详情 + * * @param account 商家绑定账号 * @return */ @@ -434,6 +413,7 @@ /** * 获取商便民服务商家信息 + * * @param userId * @return */ @@ -444,6 +424,7 @@ /** * 新增便民服务产品分类信息 + * * @param convenientProductCategoryDTO * @return */ @@ -454,6 +435,7 @@ /** * 编辑便民服务产品分类信息 + * * @param convenientProductCategoryDTO * @return */ @@ -464,6 +446,7 @@ /** * 删除便民服务产品分类信息 + * * @param categoryId * @param operator * @return @@ -475,6 +458,7 @@ /** * 获取便民服务产品分类详情 + * * @param categoryId * @return */ @@ -485,6 +469,7 @@ /** * 分页查询便民服务产品分类信息 + * * @param pageConvenientProductCategoryDTO * @return */ @@ -495,6 +480,7 @@ /** * 便民服务商家后台新增产品 + * * @param convenientProductDTO * @return */ @@ -505,6 +491,7 @@ /** * 便民服务商家后台编辑产品 + * * @param convenientProductDTO * @return */ @@ -515,6 +502,7 @@ /** * 便民服务商家后台获取产品详情 + * * @param productId * @return */ @@ -525,6 +513,7 @@ /** * 便民服务商家后台分页获取产品信息 + * * @param pageConvenientProductDTO * @return */ @@ -535,6 +524,7 @@ /** * 便民服务商家后台删除产品信息 + * * @param deleteConvenientProductDTO * @return */ @@ -545,6 +535,7 @@ /** * 便民服务商家后台上架/下架产品 + * * @param onShelfOrOffShelfProductDTO * @return */ @@ -555,8 +546,9 @@ /** * 获取所有产品分类 - * @return + * * @param merchantId + * @return */ @GetMapping("/product-category/all") public R getAllProductCategory(@RequestParam("merchantId") Long merchantId) { @@ -565,16 +557,18 @@ /** * 获取该社区商家数量大于0的分类 + * * @param communityId * @return */ @GetMapping("/service-category/suitable") - public R getSuitableServiceCategories(@RequestParam("communityId") Long communityId,@RequestParam("areaCode")String areaCode) { - return convenientServiceCategoryService.getSuitableServiceCategories(communityId,areaCode); + public R getSuitableServiceCategories(@RequestParam("communityId") Long communityId, @RequestParam("areaCode") String areaCode) { + return convenientServiceCategoryService.getSuitableServiceCategories(communityId, areaCode); } /** * 获取该社区下的热门商家 + * * @param pagePopularMerchantDTO * @return */ @@ -585,6 +579,7 @@ /** * 分页获取服务类型下商家信息 + * * @param pageClassifyMerchantDTO * @return */ @@ -595,6 +590,7 @@ /** * 小程序获取商家详情 + * * @param merchantId * @return */ @@ -605,6 +601,7 @@ /** * 小程序获取商家产品 + * * @param merchantId * @return */ @@ -615,6 +612,7 @@ /** * 获取产品详情 + * * @param productId * @return */ @@ -625,6 +623,7 @@ /** * 搜索商家信息 + * * @param pageSearchDTO * @return */ @@ -635,6 +634,7 @@ /** * 搜索商品信息 + * * @param pageSearchDTO * @return */ @@ -645,6 +645,7 @@ /** * 增加商家店铺咨询量 + * * @param merchantId * @return */ @@ -655,6 +656,7 @@ /** * 增加商家店铺浏览量 + * * @param merchantId * @return */ @@ -665,6 +667,7 @@ /** * 增加产品浏览量 + * * @param productId * @return */ @@ -675,6 +678,7 @@ /** * 获取商家导出数据 + * * @param exportMerchantDTO * @return */ @@ -685,6 +689,7 @@ /** * 定时任务每隔半小时将商家浏览量和咨询量总值计入指定商家数据中 + * * @return */ @PostMapping("/timedTaskWriteDataToMerchantJobHandler") @@ -694,6 +699,7 @@ /** * 获取商家上下架产品数量 + * * @param merchantId * @return */ @@ -705,6 +711,7 @@ /** * 分页查询自提点 运营后台 + * * @param pageConvenientElevatingPointDTO * @return */ @@ -715,6 +722,7 @@ /** * 便民服务新增 自提点 + * * @param convenientElevatingPointDTO * @return */ @@ -725,6 +733,7 @@ /** * 编辑便民服务 自提点 + * * @param convenientElevatingPointDTO * @return */ @@ -735,17 +744,19 @@ /** * 删除便民服务 自提点 + * * @param pointId * @param operator * @return */ @DeleteMapping("/point/delete") public R deletePoint(@RequestParam("pointId") Long pointId, @RequestParam("operator") Long operator) { - return convenientElevatingPointService.deletePoint(pointId,operator); + return convenientElevatingPointService.deletePoint(pointId, operator); } /** * 便民服务详情 自提点 + * * @param pointId * @return */ @@ -756,6 +767,7 @@ /** * 新增商品分类 + * * @param convenientGoodsCategoryDTO * @return */ @@ -766,6 +778,7 @@ /** * 编辑 + * * @param convenientGoodsCategoryDTO * @return */ @@ -776,6 +789,7 @@ /** * 删除商品分类 + * * @param categoryId * @return */ @@ -786,6 +800,7 @@ /** * 获取商品分类详情 + * * @param categoryId * @return */ @@ -796,6 +811,7 @@ /** * 分页查询商品分类 + * * @param pageConvenientGoodsCategoryDTO * @return */ @@ -806,10 +822,22 @@ /** * 获取所有商品分类 + * * @return */ @GetMapping("/goodsCategory/getAllGoodsCategories") - public R getAllGoodsCategories(){ + public R getAllGoodsCategories() { return convenientGoodsCategoryService.getAllGoodsCategories(); } + + /** + * 获取当前商铺周围的自提点信息以及距离手机距离 + * + * @param merchantId + * @return + */ + @GetMapping("/point/findPointByMerchantId") + public R findPointByMerchantId(@RequestParam("merchantId") Long merchantId, @RequestParam("lat") String lat, @RequestParam("lng") String lng) { + return convenientElevatingPointService.findPointByMerchantId(merchantId, lat, lng); + } } -- Gitblit v1.7.1