首页>代码>基于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"; } }

微信网友_7298640909209600 LV2
2024年12月18日
120_wu LV4
2024年12月3日
charleswang LV7
2024年10月19日
柳咪华沙 LV7
2024年6月28日
rain112 LV31
2024年6月13日
qtingchh LV3
2024年5月3日
saaaaaa LV14
2024年4月16日
2131234536546 LV7
2024年3月31日
123ggf LV8
2024年3月15日
pangzhihui LV14
2024年3月5日