首页>代码>SSM+bootstrap整合开发客户管理系统,实现数据高级查询及增删改查>/crm0523/src/cn/itheima/controller/CustomerController.java
package cn.itheima.controller;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
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 cn.itcast.utils.Page;
import cn.itheima.pojo.BaseDict;
import cn.itheima.pojo.Customer;
import cn.itheima.pojo.QueryVo;
import cn.itheima.service.CustomerService;
@Controller
@RequestMapping("/customer")
public class CustomerController {
@Autowired
private CustomerService customerService;
@Value("${customer.dict.source}")
private String source;
@Value("${customer.dict.industry}")
private String industry;
@Value("${customer.dict.level}")
private String level;
@RequestMapping("/list")
public String list(QueryVo vo, Model model) throws Exception{
//客户来源
List<BaseDict> sourceList = customerService.findDictByCode(source);
//所属行业
List<BaseDict> industryList = customerService.findDictByCode(industry);
//客户级别
List<BaseDict> levelList = customerService.findDictByCode(level);
if(vo.getCustName() != null){
vo.setCustName(new String(vo.getCustName().getBytes("iso8859-1"), "utf-8"));
}
if(vo.getPage() == null){
vo.setPage(1);
}
//设置查询的起始记录条数
vo.setStart((vo.getPage() - 1) * vo.getSize());
//查询数据列表和数据总数
List<Customer> resutList = customerService.findCustomerByVo(vo);
Integer count = customerService.findCustomerByVoCount(vo);
Page<Customer> page = new Page<Customer>();
page.setTotal(count); //数据总数
page.setSize(vo.getSize()); //每页显示条数
page.setPage(vo.getPage()); //当前页数
page.setRows(resutList); //数据列表
model.addAttribute("page", page);
//高级查询下拉列表数据
model.addAttribute("fromType", sourceList);
model.addAttribute("industryType", industryList);
model.addAttribute("levelType", levelList);
//高级查询选中数据回显
model.addAttribute("custName", vo.getCustName());
model.addAttribute("custSource", vo.getCustSource());
model.addAttribute("custIndustry", vo.getCustIndustry());
model.addAttribute("custLevel", vo.getCustLevel());
return "customer";
}
@RequestMapping("/detail")
@ResponseBody
public Customer detail(Long id) throws Exception{
Customer customer = customerService.findCustomerById(id);
return customer;
}
@RequestMapping("/update")
public String update(Customer customer)throws Exception{
customerService.updateCustomerById(customer);
return "customer";
}
@RequestMapping("/delete")
public String delete(Long id) throws Exception{
customerService.delCustomerById(id);
return "customer";
}
}
最近下载更多
h G24741 LV2
2024年3月12日
1379585889 LV11
2023年6月7日
stigermhf LV1
2023年2月14日
1535256872 LV1
2022年11月3日
jinyou LV1
2022年5月27日
543666826 LV34
2021年11月20日
hanxinjie LV25
2021年8月24日
裤裆很帅 LV16
2021年5月28日
atheking LV18
2020年12月12日
1782907800 LV10
2020年12月9日

最近浏览