123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- package com.kmall.admin.controller;
- import com.kmall.admin.entity.FeedbackEntity;
- import com.kmall.admin.service.FeedbackService;
- import com.kmall.common.utils.PageUtils;
- import com.kmall.common.utils.Query;
- import com.kmall.common.utils.R;
- import org.apache.shiro.authz.annotation.RequiresPermissions;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.web.bind.annotation.*;
- import java.util.List;
- import java.util.Map;
- /**
- * Controller
- *
- * @author Scott
- * @email
- * @date 2017-08-23 15:03:25
- */
- @RestController
- @RequestMapping("feedback")
- public class FeedbackController {
- @Autowired
- private FeedbackService feedbackService;
- /**
- * 查看列表
- */
- @RequestMapping("/list")
- @RequiresPermissions("feedback:list")
- public R list(@RequestParam Map<String, Object> params) {
- //查询列表数据
- Query query = new Query(params);
- List<FeedbackEntity> feedbackList = feedbackService.queryList(query);
- int total = feedbackService.queryTotal(query);
- PageUtils pageUtil = new PageUtils(feedbackList, total, query.getLimit(), query.getPage());
- return R.ok().put("page", pageUtil);
- }
- /**
- * 查看信息
- */
- @RequestMapping("/info/{msgId}")
- @RequiresPermissions("feedback:info")
- public R info(@PathVariable("msgId") Integer msgId) {
- FeedbackEntity feedback = feedbackService.queryObject(msgId);
- return R.ok().put("feedback", feedback);
- }
- /**
- * 保存
- */
- @RequestMapping("/save")
- @RequiresPermissions("feedback:save")
- public R save(@RequestBody FeedbackEntity feedback) {
- feedbackService.save(feedback);
- return R.ok();
- }
- /**
- * 修改
- */
- @RequestMapping("/update")
- @RequiresPermissions("feedback:update")
- public R update(@RequestBody FeedbackEntity feedback) {
- feedbackService.update(feedback);
- return R.ok();
- }
- /**
- * 删除
- */
- @RequestMapping("/delete")
- @RequiresPermissions("feedback:delete")
- public R delete(@RequestBody Integer[]msgIds) {
- feedbackService.deleteBatch(msgIds);
- return R.ok();
- }
- /**
- * 查看所有列表
- */
- @RequestMapping("/queryAll")
- public R queryAll(@RequestParam Map<String, Object> params) {
- List<FeedbackEntity> list = feedbackService.queryList(params);
- return R.ok().put("list", list);
- }
- }
|