|
@@ -1,8 +1,10 @@
|
|
|
package com.macro.mall.demo.controller;
|
|
|
|
|
|
+import com.macro.mall.demo.dto.CommonPage;
|
|
|
import com.macro.mall.demo.dto.CommonResult;
|
|
|
import com.macro.mall.demo.dto.PmsBrandDto;
|
|
|
import com.macro.mall.demo.service.DemoService;
|
|
|
+import com.macro.mall.model.PmsBrand;
|
|
|
import io.swagger.annotations.Api;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
import org.slf4j.Logger;
|
|
@@ -14,6 +16,8 @@ import org.springframework.validation.BindingResult;
|
|
|
import org.springframework.validation.annotation.Validated;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
/**
|
|
|
* 测试controller
|
|
|
*/
|
|
@@ -28,24 +32,24 @@ public class DemoController {
|
|
|
@ApiOperation(value = "获取全部品牌列表")
|
|
|
@RequestMapping(value = "/brand/listAll", method = RequestMethod.GET)
|
|
|
@ResponseBody
|
|
|
- public Object getBrandList() {
|
|
|
- return new CommonResult().success(demoService.listAllBrand());
|
|
|
+ public CommonResult<List<PmsBrand>> getBrandList() {
|
|
|
+ return CommonResult.success(demoService.listAllBrand());
|
|
|
}
|
|
|
|
|
|
@ApiOperation(value = "添加品牌")
|
|
|
@RequestMapping(value = "/brand/create", method = RequestMethod.POST)
|
|
|
@ResponseBody
|
|
|
- public Object createBrand(@Validated @RequestBody PmsBrandDto pmsBrand, BindingResult result) {
|
|
|
+ public CommonResult createBrand(@Validated @RequestBody PmsBrandDto pmsBrand, BindingResult result) {
|
|
|
if (result.hasErrors()) {
|
|
|
- return new CommonResult().validateFailed(result.getFieldError().getDefaultMessage());
|
|
|
+ return CommonResult.validateFailed(result.getFieldError().getDefaultMessage());
|
|
|
}
|
|
|
CommonResult commonResult;
|
|
|
int count = demoService.createBrand(pmsBrand);
|
|
|
if (count == 1) {
|
|
|
- commonResult = new CommonResult().success(pmsBrand);
|
|
|
+ commonResult = CommonResult.success(pmsBrand);
|
|
|
LOGGER.debug("createBrand success:{}", pmsBrand);
|
|
|
} else {
|
|
|
- commonResult = new CommonResult().failed();
|
|
|
+ commonResult = CommonResult.failed("操作失败");
|
|
|
LOGGER.debug("createBrand failed:{}", pmsBrand);
|
|
|
}
|
|
|
return commonResult;
|
|
@@ -54,17 +58,17 @@ public class DemoController {
|
|
|
@ApiOperation(value = "更新品牌")
|
|
|
@RequestMapping(value = "/brand/update/{id}", method = RequestMethod.POST)
|
|
|
@ResponseBody
|
|
|
- public Object updateBrand(@PathVariable("id") Long id, @Validated @RequestBody PmsBrandDto pmsBrandDto,BindingResult result) {
|
|
|
+ public CommonResult updateBrand(@PathVariable("id") Long id, @Validated @RequestBody PmsBrandDto pmsBrandDto,BindingResult result) {
|
|
|
if(result.hasErrors()){
|
|
|
- return new CommonResult().validateFailed(result.getFieldError().getDefaultMessage());
|
|
|
+ return CommonResult.validateFailed(result.getFieldError().getDefaultMessage());
|
|
|
}
|
|
|
CommonResult commonResult;
|
|
|
int count = demoService.updateBrand(id, pmsBrandDto);
|
|
|
if (count == 1) {
|
|
|
- commonResult = new CommonResult().success(pmsBrandDto);
|
|
|
+ commonResult = CommonResult.success(pmsBrandDto);
|
|
|
LOGGER.debug("updateBrand success:{}", pmsBrandDto);
|
|
|
} else {
|
|
|
- commonResult = new CommonResult().failed();
|
|
|
+ commonResult = CommonResult.failed("操作失败");
|
|
|
LOGGER.debug("updateBrand failed:{}", pmsBrandDto);
|
|
|
}
|
|
|
return commonResult;
|
|
@@ -73,29 +77,30 @@ public class DemoController {
|
|
|
@ApiOperation(value = "删除品牌")
|
|
|
@RequestMapping(value = "/brand/delete/{id}", method = RequestMethod.GET)
|
|
|
@ResponseBody
|
|
|
- public Object deleteBrand(@PathVariable("id") Long id) {
|
|
|
+ public CommonResult deleteBrand(@PathVariable("id") Long id) {
|
|
|
int count = demoService.deleteBrand(id);
|
|
|
if (count == 1) {
|
|
|
LOGGER.debug("deleteBrand success :id={}", id);
|
|
|
- return new CommonResult().success(null);
|
|
|
+ return CommonResult.success(null);
|
|
|
} else {
|
|
|
LOGGER.debug("deleteBrand failed :id={}", id);
|
|
|
- return new CommonResult().failed();
|
|
|
+ return CommonResult.failed("操作失败");
|
|
|
}
|
|
|
}
|
|
|
|
|
|
@ApiOperation(value = "分页获取品牌列表")
|
|
|
@RequestMapping(value = "/brand/list", method = RequestMethod.GET)
|
|
|
@ResponseBody
|
|
|
- public Object listBrand(@RequestParam(value = "pageNum", defaultValue = "1") Integer pageNum,
|
|
|
- @RequestParam(value = "pageSize", defaultValue = "3") Integer pageSize) {
|
|
|
- return new CommonResult().pageSuccess(demoService.listBrand(pageNum, pageSize));
|
|
|
+ public CommonResult<CommonPage<PmsBrand>> listBrand(@RequestParam(value = "pageNum", defaultValue = "1") Integer pageNum,
|
|
|
+ @RequestParam(value = "pageSize", defaultValue = "3") Integer pageSize) {
|
|
|
+ List<PmsBrand> brandList = demoService.listBrand(pageNum, pageSize);
|
|
|
+ return CommonResult.success(CommonPage.restPage(brandList));
|
|
|
}
|
|
|
|
|
|
@ApiOperation(value = "根据编号查询品牌信息")
|
|
|
@RequestMapping(value = "/brand/{id}", method = RequestMethod.GET)
|
|
|
@ResponseBody
|
|
|
- public Object brand(@PathVariable("id") Long id) {
|
|
|
- return new CommonResult().success(demoService.getBrand(id));
|
|
|
+ public CommonResult<PmsBrand> brand(@PathVariable("id") Long id) {
|
|
|
+ return CommonResult.success(demoService.getBrand(id));
|
|
|
}
|
|
|
}
|