首页>代码>基于SSM开发校园在线点餐系统,包括前后台>/基于SSM-校园在线点餐系统/源码/school-order/src/main/java/com/cxs/biyesheji/controller/CustomerController.java
package com.cxs.biyesheji.controller; import com.cxs.biyesheji.pojo.Customer; import com.cxs.biyesheji.service.CustomerService; import com.cxs.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"; } }