增加店铺企业信息接口

增加删除商品
修复:修改订单金额售后金额不正确
This commit is contained in:
lifenlong
2021-08-11 20:14:56 +08:00
parent dd7af218a4
commit 64e45c10b1
13 changed files with 118 additions and 65 deletions

View File

@@ -63,6 +63,13 @@ public class StoreBuyerController {
return ResultUtil.data(storeDetailService.getStoreBasicInfoDTO(id));
}
@ApiOperation(value = "通过id获取店铺详细信息-营业执照")
@ApiImplicitParam(name = "id", value = "店铺ID", required = true, paramType = "path")
@GetMapping(value = "/get/licencePhoto/{id}")
public ResultMessage<StoreOtherVO> licencePhoto(@NotNull @PathVariable String id) {
return ResultUtil.data(storeDetailService.getStoreOtherVO(id));
}
@ApiOperation(value = "通过id获取店铺商品分类")
@ApiImplicitParams({
@ApiImplicitParam(name = "id", value = "店铺ID", required = true, paramType = "path")