|
@@ -3,12 +3,10 @@ package com.macro.mall.controller;
|
|
|
import com.macro.mall.dto.CommonResult;
|
|
|
import com.macro.mall.dto.PmsBrandParam;
|
|
|
import com.macro.mall.service.PmsBrandService;
|
|
|
-import com.macro.mall.validator.FlagValidator;
|
|
|
import io.swagger.annotations.Api;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
-import org.slf4j.Logger;
|
|
|
-import org.slf4j.LoggerFactory;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.security.access.prepost.PreAuthorize;
|
|
|
import org.springframework.stereotype.Controller;
|
|
|
import org.springframework.validation.BindingResult;
|
|
|
import org.springframework.validation.annotation.Validated;
|
|
@@ -30,6 +28,7 @@ public class PmsBrandController {
|
|
|
@ApiOperation(value = "获取全部品牌列表")
|
|
|
@RequestMapping(value = "/listAll", method = RequestMethod.GET)
|
|
|
@ResponseBody
|
|
|
+ @PreAuthorize("hasAuthority('pms:brand:read')")
|
|
|
public Object getList() {
|
|
|
return new CommonResult().success(brandService.listAllBrand());
|
|
|
}
|
|
@@ -37,6 +36,7 @@ public class PmsBrandController {
|
|
|
@ApiOperation(value = "添加品牌")
|
|
|
@RequestMapping(value = "/create", method = RequestMethod.POST)
|
|
|
@ResponseBody
|
|
|
+ @PreAuthorize("hasAuthority('pms:brand:create')")
|
|
|
public Object create(@Validated @RequestBody PmsBrandParam pmsBrand, BindingResult result) {
|
|
|
CommonResult commonResult;
|
|
|
int count = brandService.createBrand(pmsBrand);
|
|
@@ -51,6 +51,7 @@ public class PmsBrandController {
|
|
|
@ApiOperation(value = "更新品牌")
|
|
|
@RequestMapping(value = "/update/{id}", method = RequestMethod.POST)
|
|
|
@ResponseBody
|
|
|
+ @PreAuthorize("hasAuthority('pms:brand:update')")
|
|
|
public Object update(@PathVariable("id") Long id,
|
|
|
@Validated @RequestBody PmsBrandParam pmsBrandParam,
|
|
|
BindingResult result) {
|
|
@@ -67,6 +68,7 @@ public class PmsBrandController {
|
|
|
@ApiOperation(value = "删除品牌")
|
|
|
@RequestMapping(value = "/delete/{id}", method = RequestMethod.GET)
|
|
|
@ResponseBody
|
|
|
+ @PreAuthorize("hasAuthority('pms:brand:delete')")
|
|
|
public Object delete(@PathVariable("id") Long id) {
|
|
|
int count = brandService.deleteBrand(id);
|
|
|
if (count == 1) {
|
|
@@ -79,6 +81,7 @@ public class PmsBrandController {
|
|
|
@ApiOperation(value = "根据品牌名称分页获取品牌列表")
|
|
|
@RequestMapping(value = "/list", method = RequestMethod.GET)
|
|
|
@ResponseBody
|
|
|
+ @PreAuthorize("hasAuthority('pms:brand:read')")
|
|
|
public Object getList(@RequestParam(value = "keyword", required = false) String keyword,
|
|
|
@RequestParam(value = "pageNum", defaultValue = "1") Integer pageNum,
|
|
|
@RequestParam(value = "pageSize", defaultValue = "5") Integer pageSize) {
|
|
@@ -88,6 +91,7 @@ public class PmsBrandController {
|
|
|
@ApiOperation(value = "根据编号查询品牌信息")
|
|
|
@RequestMapping(value = "/{id}", method = RequestMethod.GET)
|
|
|
@ResponseBody
|
|
|
+ @PreAuthorize("hasAuthority('pms:brand:read')")
|
|
|
public Object getItem(@PathVariable("id") Long id) {
|
|
|
return new CommonResult().success(brandService.getBrand(id));
|
|
|
}
|
|
@@ -95,6 +99,7 @@ public class PmsBrandController {
|
|
|
@ApiOperation(value = "批量删除品牌")
|
|
|
@RequestMapping(value = "/delete/batch", method = RequestMethod.POST)
|
|
|
@ResponseBody
|
|
|
+ @PreAuthorize("hasAuthority('pms:brand:delete')")
|
|
|
public Object deleteBatch(@RequestParam("ids") List<Long> ids) {
|
|
|
int count = brandService.deleteBrand(ids);
|
|
|
if (count > 0) {
|
|
@@ -107,6 +112,7 @@ public class PmsBrandController {
|
|
|
@ApiOperation(value = "批量更新显示状态")
|
|
|
@RequestMapping(value = "/update/showStatus", method = RequestMethod.POST)
|
|
|
@ResponseBody
|
|
|
+ @PreAuthorize("hasAuthority('pms:brand:update')")
|
|
|
public Object updateShowStatus(@RequestParam("ids") List<Long> ids,
|
|
|
@RequestParam("showStatus") Integer showStatus) {
|
|
|
int count = brandService.updateShowStatus(ids, showStatus);
|
|
@@ -120,6 +126,7 @@ public class PmsBrandController {
|
|
|
@ApiOperation(value = "批量更新厂家制造商状态")
|
|
|
@RequestMapping(value = "/update/factoryStatus", method = RequestMethod.POST)
|
|
|
@ResponseBody
|
|
|
+ @PreAuthorize("hasAuthority('pms:brand:update')")
|
|
|
public Object updateFactoryStatus(@RequestParam("ids") List<Long> ids,
|
|
|
@RequestParam("factoryStatus") Integer factoryStatus) {
|
|
|
int count = brandService.updateFactoryStatus(ids, factoryStatus);
|