123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- /*
- package com.kmall.admin.controller;
- import com.kmall.admin.entity.CouponGoodsEntity;
- import com.kmall.admin.service.CouponGoodsService;
- 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-29 21:50:17
- *//*
- @RestController
- @RequestMapping("coupongoods")
- public class CouponGoodsController {
- @Autowired
- private CouponGoodsService couponGoodsService;
- */
- /**
- * 查看列表
- *//*
- @RequestMapping("/list")
- @RequiresPermissions("coupongoods:list")
- public R list(@RequestParam Map<String, Object> params) {
- //查询列表数据
- Query query = new Query(params);
- List<CouponGoodsEntity> couponGoodsList = couponGoodsService.queryList(query);
- int total = couponGoodsService.queryTotal(query);
- PageUtils pageUtil = new PageUtils(couponGoodsList, total, query.getLimit(), query.getPage());
- return R.ok().put("page", pageUtil);
- }
- */
- /**
- * 查看信息
- *//*
- @RequestMapping("/info/{id}")
- @RequiresPermissions("coupongoods:info")
- public R info(@PathVariable("id") Integer id) {
- CouponGoodsEntity couponGoods = couponGoodsService.queryObject(id);
- return R.ok().put("couponGoods", couponGoods);
- }
- */
- /**
- * 保存
- *//*
- @RequestMapping("/save")
- @RequiresPermissions("coupongoods:save")
- public R save(@RequestBody CouponGoodsEntity couponGoods) {
- couponGoodsService.save(couponGoods);
- return R.ok();
- }
- */
- /**
- * 修改
- *//*
- @RequestMapping("/update")
- @RequiresPermissions("coupongoods:update")
- public R update(@RequestBody CouponGoodsEntity couponGoods) {
- couponGoodsService.update(couponGoods);
- return R.ok();
- }
- */
- /**
- * 删除
- *//*
- @RequestMapping("/delete")
- @RequiresPermissions("coupongoods:delete")
- public R delete(@RequestBody Integer[]ids) {
- couponGoodsService.deleteBatch(ids);
- return R.ok();
- }
- */
- /**
- * 查看所有列表
- *//*
- @RequestMapping("/queryAll")
- public R queryAll(@RequestParam Map<String, Object> params) {
- List<CouponGoodsEntity> list = couponGoodsService.queryList(params);
- return R.ok().put("list", list);
- }
- }
- */
|