|
|
@@ -1,12 +1,12 @@
|
|
|
package com.zheng.cms.admin.controller.manage;
|
|
|
|
|
|
+import com.zheng.cms.common.constant.CmsResult;
|
|
|
+import com.zheng.cms.common.constant.CmsResultConstant;
|
|
|
import com.zheng.cms.dao.model.CmsCategory;
|
|
|
import com.zheng.cms.dao.model.CmsCategoryExample;
|
|
|
import com.zheng.cms.rpc.api.CmsCategoryService;
|
|
|
import com.zheng.common.base.BaseController;
|
|
|
-import com.zheng.common.util.Paginator;
|
|
|
import io.swagger.annotations.Api;
|
|
|
-import io.swagger.annotations.ApiImplicitParam;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
import org.apache.shiro.authz.annotation.RequiresPermissions;
|
|
|
import org.slf4j.Logger;
|
|
|
@@ -14,13 +14,12 @@ import org.slf4j.LoggerFactory;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Controller;
|
|
|
import org.springframework.ui.ModelMap;
|
|
|
-import org.springframework.web.bind.annotation.PathVariable;
|
|
|
-import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
-import org.springframework.web.bind.annotation.RequestMethod;
|
|
|
-import org.springframework.web.bind.annotation.RequestParam;
|
|
|
+import org.springframework.util.StringUtils;
|
|
|
+import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
-import javax.servlet.http.HttpServletRequest;
|
|
|
+import java.util.HashMap;
|
|
|
import java.util.List;
|
|
|
+import java.util.Map;
|
|
|
|
|
|
/**
|
|
|
* 类目控制器
|
|
|
@@ -28,7 +27,7 @@ import java.util.List;
|
|
|
*/
|
|
|
@Controller
|
|
|
@RequestMapping("/manage/category")
|
|
|
-@Api(value = "类目控制器", description = "类目管理")
|
|
|
+@Api(value = "类目管理", description = "类目管理")
|
|
|
public class CmsCategoryController extends BaseController {
|
|
|
|
|
|
private final static Logger _log = LoggerFactory.getLogger(CmsCategoryController.class);
|
|
|
@@ -36,92 +35,65 @@ public class CmsCategoryController extends BaseController {
|
|
|
@Autowired
|
|
|
private CmsCategoryService cmsCategoryService;
|
|
|
|
|
|
- /**
|
|
|
- * 列表
|
|
|
- * @param page 当前页码
|
|
|
- * @param rows 每页条数
|
|
|
- * @param desc 降序排序
|
|
|
- * @param request
|
|
|
- * @param modelMap
|
|
|
- * @return
|
|
|
- */
|
|
|
- @ApiOperation(value = "类目列表", notes = "获取类目列表并分页")
|
|
|
+ @ApiOperation(value = "类目首页")
|
|
|
@RequiresPermissions("cms:category:read")
|
|
|
- @RequestMapping(value = "/list", method = RequestMethod.GET)
|
|
|
- public String list(
|
|
|
- @RequestParam(required = false, defaultValue = "1", value = "page") int page,
|
|
|
- @RequestParam(required = false, defaultValue = "20", value = "rows") int rows,
|
|
|
- @RequestParam(required = false, defaultValue = "false", value = "desc") boolean desc,
|
|
|
- HttpServletRequest request, ModelMap modelMap) {
|
|
|
+ @RequestMapping(value = "/index", method = RequestMethod.GET)
|
|
|
+ public String index() {
|
|
|
+ return "/manage/category/index";
|
|
|
+ }
|
|
|
|
|
|
- // 数据列表
|
|
|
+ @ApiOperation(value = "类目列表")
|
|
|
+ @RequiresPermissions("cms:category:read")
|
|
|
+ @RequestMapping(value = "/list", method = RequestMethod.GET)
|
|
|
+ @ResponseBody
|
|
|
+ public Object list(
|
|
|
+ @RequestParam(required = false, defaultValue = "0", value = "offset") int offset,
|
|
|
+ @RequestParam(required = false, defaultValue = "10", value = "limit") int limit,
|
|
|
+ @RequestParam(required = false, value = "sort") String sort,
|
|
|
+ @RequestParam(required = false, value = "order") String order) {
|
|
|
CmsCategoryExample cmsCategoryExample = new CmsCategoryExample();
|
|
|
- cmsCategoryExample.setOffset((page - 1) * rows);
|
|
|
- cmsCategoryExample.setLimit(rows);
|
|
|
- cmsCategoryExample.setOrderByClause(desc ? "orders desc" : "orders asc");
|
|
|
- List<CmsCategory> categorys = cmsCategoryService.selectByExample(cmsCategoryExample);
|
|
|
-
|
|
|
- // 分页对象
|
|
|
+ cmsCategoryExample.setOffset(offset);
|
|
|
+ cmsCategoryExample.setLimit(limit);
|
|
|
+ if (!StringUtils.isEmpty(sort) && !StringUtils.isEmpty(order)) {
|
|
|
+ cmsCategoryExample.setOrderByClause(sort + " " + order);
|
|
|
+ }
|
|
|
+ List<CmsCategory> rows = cmsCategoryService.selectByExample(cmsCategoryExample);
|
|
|
long total = cmsCategoryService.countByExample(cmsCategoryExample);
|
|
|
- Paginator paginator = new Paginator(total, page, rows, request);
|
|
|
-
|
|
|
- modelMap.put("categorys", categorys);
|
|
|
- modelMap.put("paginator", paginator);
|
|
|
- return "/manage/category/list";
|
|
|
+ Map<String, Object> result = new HashMap<>();
|
|
|
+ result.put("rows", rows);
|
|
|
+ result.put("total", total);
|
|
|
+ return result;
|
|
|
}
|
|
|
-
|
|
|
- /**
|
|
|
- * 新增get
|
|
|
- * @return
|
|
|
- */
|
|
|
- @ApiOperation(value = "新增类目", notes = "新增类目页")
|
|
|
+
|
|
|
+ @ApiOperation(value = "新增类目")
|
|
|
@RequiresPermissions("cms:category:create")
|
|
|
@RequestMapping(value = "/create", method = RequestMethod.GET)
|
|
|
- public String add() {
|
|
|
+ public String create() {
|
|
|
return "/manage/category/create";
|
|
|
}
|
|
|
-
|
|
|
- /**
|
|
|
- * 新增post
|
|
|
- * @param cmsCategory
|
|
|
- * @param modelMap
|
|
|
- * @return
|
|
|
- */
|
|
|
- @ApiOperation(value = "新增类目", notes = "新增类目提交接口")
|
|
|
+
|
|
|
+ @ApiOperation(value = "新增类目")
|
|
|
@RequiresPermissions("cms:category:create")
|
|
|
- @ApiImplicitParam(name = "cmsCategory", value = "类目实体cmsCategory", required = true, dataType = "CmsCategory")
|
|
|
@RequestMapping(value = "/create", method = RequestMethod.POST)
|
|
|
- public String add(CmsCategory cmsCategory, ModelMap modelMap) {
|
|
|
+ @ResponseBody
|
|
|
+ public Object create(CmsCategory cmsCategory) {
|
|
|
long time = System.currentTimeMillis();
|
|
|
cmsCategory.setCtime(time);
|
|
|
cmsCategory.setOrders(time);
|
|
|
int count = cmsCategoryService.insertSelective(cmsCategory);
|
|
|
- modelMap.put("count", count);
|
|
|
- return "redirect:/manage/category/list";
|
|
|
+ return new CmsResult(CmsResultConstant.SUCCESS, count);
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * 删除
|
|
|
- * @param ids
|
|
|
- * @param modelMap
|
|
|
- * @return
|
|
|
- */
|
|
|
- @ApiOperation(value = "删除类目", notes = "批量删除类目")
|
|
|
+ @ApiOperation(value = "删除类目")
|
|
|
@RequiresPermissions("cms:category:delete")
|
|
|
@RequestMapping(value = "/delete/{ids}",method = RequestMethod.GET)
|
|
|
- public String delete(@PathVariable("ids") String ids, ModelMap modelMap) {
|
|
|
+ @ResponseBody
|
|
|
+ public Object delete(@PathVariable("ids") String ids) {
|
|
|
int count = cmsCategoryService.deleteByPrimaryKeys(ids);
|
|
|
- modelMap.put("count", count);
|
|
|
- return "redirect:/manage/category/list";
|
|
|
+ return new CmsResult(CmsResultConstant.SUCCESS, count);
|
|
|
}
|
|
|
-
|
|
|
- /**
|
|
|
- * 修改get
|
|
|
- * @param id
|
|
|
- * @param modelMap
|
|
|
- * @return
|
|
|
- */
|
|
|
- @ApiOperation(value = "修改类目", notes = "根据id修改类目页")
|
|
|
+
|
|
|
+ @ApiOperation(value = "修改类目")
|
|
|
@RequiresPermissions("cms:category:update")
|
|
|
@RequestMapping(value = "/update/{id}", method = RequestMethod.GET)
|
|
|
public String update(@PathVariable("id") int id, ModelMap modelMap) {
|
|
|
@@ -129,22 +101,15 @@ public class CmsCategoryController extends BaseController {
|
|
|
modelMap.put("category", category);
|
|
|
return "/manage/category/update";
|
|
|
}
|
|
|
-
|
|
|
- /**
|
|
|
- * 修改post
|
|
|
- * @param id
|
|
|
- * @param cmsCategory
|
|
|
- * @param modelMap
|
|
|
- * @return
|
|
|
- */
|
|
|
- @ApiOperation(value = "修改类目", notes = "根据id修改类目提交接口")
|
|
|
+
|
|
|
+ @ApiOperation(value = "修改类目")
|
|
|
@RequiresPermissions("cms:category:update")
|
|
|
@RequestMapping(value = "/update/{id}", method = RequestMethod.POST)
|
|
|
- public String update(@PathVariable("id") int id, CmsCategory cmsCategory, ModelMap modelMap) {
|
|
|
+ @ResponseBody
|
|
|
+ public Object update(@PathVariable("id") int id, CmsCategory cmsCategory) {
|
|
|
+ cmsCategory.setCategoryId(id);
|
|
|
int count = cmsCategoryService.updateByPrimaryKeySelective(cmsCategory);
|
|
|
- modelMap.put("count", count);
|
|
|
- modelMap.put("id", id);
|
|
|
- return "redirect:/manage/category/list";
|
|
|
+ return new CmsResult(CmsResultConstant.SUCCESS, count);
|
|
|
}
|
|
|
|
|
|
}
|