| | |
| | | package com.ruoyi.basic.service; |
| | | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.basic.pojo.Customer; |
| | | |
| | |
| | | * @param customer 客户档案 |
| | | * @return 客户档案集合 |
| | | */ |
| | | List<Customer> selectCustomerList(Customer customer); |
| | | IPage<Customer> selectCustomerList(Page page, Customer customer); |
| | | |
| | | /** |
| | | * 新增客户档案 |
| | |
| | | */ |
| | | int deleteCustomerByIds(Long[] ids); |
| | | |
| | | List<Customer> selectCustomerListByIds(Long[] ids); |
| | | |
| | | /** |
| | | * 删除客户档案信息 |
| | | * 查询客户信息 |
| | | * |
| | | * @param id 客户档案主键 |
| | | * @return 结果 |
| | | */ |
| | | int deleteCustomerById(Long id); |
| | | List customerList(Customer customer); |
| | | |
| | | List<Customer> selectCustomerLists(Customer customer); |
| | | } |