package com.ruoyi.basic.controller; import java.util.List; import javax.servlet.http.HttpServletResponse; import com.ruoyi.basic.pojo.Customer; import com.ruoyi.basic.service.ICustomerService; import org.springframework.security.access.prepost.PreAuthorize; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.PutMapping; import org.springframework.web.bind.annotation.DeleteMapping; 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.RestController; import com.ruoyi.framework.aspectj.lang.annotation.Log; import com.ruoyi.framework.aspectj.lang.enums.BusinessType; import com.ruoyi.framework.web.controller.BaseController; import com.ruoyi.framework.web.domain.AjaxResult; import com.ruoyi.common.utils.poi.ExcelUtil; import com.ruoyi.framework.web.page.TableDataInfo; /** * 客户档案Controller * * @author ruoyi * @date 2025-05-07 */ @RestController @RequestMapping("/system/customer") public class CustomerController extends BaseController { @Autowired private ICustomerService customerService; /** * 查询客户档案列表 */ @PreAuthorize("@ss.hasPermi('system:customer:list')") @GetMapping("/list") public TableDataInfo list(Customer customer) { startPage(); List list = customerService.selectCustomerList(customer); return getDataTable(list); } /** * 导出客户档案列表 */ @PreAuthorize("@ss.hasPermi('system:customer:export')") @Log(title = "客户档案", businessType = BusinessType.EXPORT) @PostMapping("/export") public void export(HttpServletResponse response, Customer customer) { List list = customerService.selectCustomerList(customer); ExcelUtil util = new ExcelUtil(Customer.class); util.exportExcel(response, list, "客户档案数据"); } /** * 获取客户档案详细信息 */ @PreAuthorize("@ss.hasPermi('system:customer:query')") @GetMapping(value = "/{id}") public AjaxResult getInfo(@PathVariable("id") Long id) { return success(customerService.selectCustomerById(id)); } /** * 新增客户档案 */ @PreAuthorize("@ss.hasPermi('system:customer:add')") @Log(title = "客户档案", businessType = BusinessType.INSERT) @PostMapping public AjaxResult add(@RequestBody Customer customer) { return toAjax(customerService.insertCustomer(customer)); } /** * 修改客户档案 */ @PreAuthorize("@ss.hasPermi('system:customer:edit')") @Log(title = "客户档案", businessType = BusinessType.UPDATE) @PutMapping public AjaxResult edit(@RequestBody Customer customer) { return toAjax(customerService.updateCustomer(customer)); } /** * 删除客户档案 */ @PreAuthorize("@ss.hasPermi('system:customer:remove')") @Log(title = "客户档案", businessType = BusinessType.DELETE) @DeleteMapping("/{ids}") public AjaxResult remove(@PathVariable Long[] ids) { return toAjax(customerService.deleteCustomerByIds(ids)); } }