liding
昨天 befc0e5606ab7c913dda0346152a4150d0ee5f79
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
package com.ruoyi.basic.controller;
 
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.ruoyi.basic.dto.CustomerDto;
import com.ruoyi.basic.entity.Customer;
import com.ruoyi.basic.service.CustomerService;
import com.ruoyi.common.core.domain.R;
import jakarta.servlet.http.HttpServletResponse;
import lombok.AllArgsConstructor;
import org.springframework.web.bind.annotation.*;
 
import java.util.List;
 
/**
 * <p>
 * 客户信息 前端控制器
 * </p>
 *
 * @author ruoyi
 * @since 2025-06-03
 */
 
@RestController
@AllArgsConstructor
@RequestMapping("/customer")
public class CustomerController {
 
    private CustomerService customerService;
 
    /**
     * 查询
     */
    @GetMapping("/list")
    public R<IPage<Customer>> list(Page page, CustomerDto customerDto) {
        IPage<Customer> list = customerService.selectCustomerList(page, customerDto);
        return R.ok(list);
    }
 
    /**
     * 客户list
     */
    @GetMapping("/customerList")
    public R<List<Customer>> list() {
        return R.ok(customerService.customerList());
    }
 
    /**
     * 新增修改
     */
    @PostMapping("/addOrEditCustomer")
    public R addOrEditSupply(@RequestBody CustomerDto customerDto) {
        return R.ok(customerService.addOrEditCustomer(customerDto));
    }
 
    /**
     * 删除
     */
    @DeleteMapping("/delCustomer")
    public R remove(@RequestBody Long[] ids) {
        return R.ok(customerService.delCustomerByIds(ids));
    }
 
    /**
     * 客户信息导出
     */
    @PostMapping("/export")
    public void supplierExport(HttpServletResponse response, CustomerDto customerDto) {
        customerService.customerExport(response, customerDto);
    }
}