首页>代码>基于SSM开发的网上订餐系统,包括前台页面和后台管理系统>/sourcecode/src/main/java/com/byh/biyesheji/controller/CustomerController.java
package com.byh.biyesheji.controller;

import com.byh.biyesheji.pojo.Customer;
import com.byh.biyesheji.pojo.Product;
import com.byh.biyesheji.service.CustomerService;
import com.byh.biyesheji.util.Page;
import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

import java.util.List;

/**
 * 用户模块controller
 */
@Controller
@RequestMapping("/customer")
public class CustomerController {
    @Autowired
    private CustomerService customerService;
    @RequestMapping("/list")
    public String list(Model model, Page page)
    {
        PageHelper.offsetPage(page.getStart(),page.getCount());//分页查询
        List<Customer> list= customerService.list();
        int total = (int) new PageInfo<>(list).getTotal();//总条数
        page.setTotal(total);
        model.addAttribute("list",list);
        model.addAttribute("totals",total);
        return "cstpage/cst-list";
    }
    /**
     * 设置会员
     * @param id
     * @return
     */
    @RequestMapping("/shezhihuiyuan")
    @ResponseBody
    public String shezhihuiyuan(int id){
        customerService.shezhihuiyuan(id);
        return "success";
    }

    @RequestMapping("/del")
    public String del(int id)
    {
        customerService.del(id);
        return "redirect:list";
    }
}
最近下载更多
charleswang  LV7 10月19日
柳咪华沙  LV7 6月28日
rain112  LV31 6月13日
qtingchh  LV3 5月3日
saaaaaa  LV14 4月16日
2131234536546  LV7 3月31日
123ggf  LV8 3月15日
pangzhihui  LV14 3月5日
nyb4613  LV8 3月5日
admin_z  LV22 2月4日
最近浏览更多
DXming 11月7日
暂无贡献等级
charleswang  LV7 10月19日
782325418 10月14日
暂无贡献等级
Peny_ZH  LV5 9月21日
柳咪华沙  LV7 6月28日
huangshi 6月28日
暂无贡献等级
dfgggf 6月26日
暂无贡献等级
暂无贡献等级
TY0165  LV20 6月18日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友