570 Star 2K Fork 1.1K

tiankong0310 / my-shop

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
OrderGoodsController.java 2.46 KB
一键复制 编辑 原始数据 按行查看 历史
tiankong0310 提交于 2018-06-13 14:25 . m
package com.fengdu.controller;
import java.util.List;
import java.util.Map;
import org.apache.shiro.authz.annotation.RequiresPermissions;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import com.fengdu.entity.OrderGoodsEntity;
import com.fengdu.service.OrderGoodsService;
import com.fengdu.utils.PageUtils;
import com.fengdu.utils.Query;
import com.fengdu.utils.R;
/**
*
*
* @author tiankong
* @email 2366207000@qq.com
* @date 2017-08-13 10:41:09
*/
@RestController
@RequestMapping("ordergoods")
public class OrderGoodsController {
@Autowired
private OrderGoodsService orderGoodsService;
/**
* 列表
*/
@RequestMapping("/list")
@RequiresPermissions("ordergoods:list")
public R list(@RequestParam Map<String, Object> params){
//查询列表数据
Query query = new Query(params);
List<OrderGoodsEntity> orderGoodsList = orderGoodsService.queryList(query);
int total = orderGoodsService.queryTotal(query);
PageUtils pageUtil = new PageUtils(orderGoodsList, total, query.getLimit(), query.getPage());
return R.ok().put("page", pageUtil);
}
/**
* 信息
*/
@RequestMapping("/info/{id}")
@RequiresPermissions("ordergoods:info")
public R info(@PathVariable("id") Integer id){
OrderGoodsEntity orderGoods = orderGoodsService.queryObject(id);
return R.ok().put("orderGoods", orderGoods);
}
/**
* 保存
*/
@RequestMapping("/save")
@RequiresPermissions("ordergoods:save")
public R save(@RequestBody OrderGoodsEntity orderGoods){
orderGoodsService.save(orderGoods);
return R.ok();
}
/**
* 修改
*/
@RequestMapping("/update")
@RequiresPermissions("ordergoods:update")
public R update(@RequestBody OrderGoodsEntity orderGoods){
orderGoodsService.update(orderGoods);
return R.ok();
}
/**
* 删除
*/
@RequestMapping("/delete")
@RequiresPermissions("ordergoods:delete")
public R delete(@RequestBody Integer[] ids){
orderGoodsService.deleteBatch(ids);
return R.ok();
}
/**
* 查看所有列表
*/
@RequestMapping("/queryAll")
public R queryAll(@RequestParam Map<String, Object> params) {
List<OrderGoodsEntity> list = orderGoodsService.queryList(params);
return R.ok().put("list", list);
}
}
Java
1
https://gitee.com/tiankong0310/my-shop.git
git@gitee.com:tiankong0310/my-shop.git
tiankong0310
my-shop
my-shop
master

搜索帮助