增加店铺企业信息接口
增加删除商品 修复:修改订单金额售后金额不正确
This commit is contained in:
@@ -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")
|
||||
|
||||
Reference in New Issue
Block a user