| | |
| | | |
| | | /** |
| | | * 客户档案Service接口 |
| | | * |
| | | * |
| | | * @author ruoyi |
| | | * @date 2025-05-07 |
| | | */ |
| | | public interface ICustomerService extends IService<Customer> |
| | | { |
| | | public interface ICustomerService extends IService<Customer> { |
| | | /** |
| | | * 查询客户档案 |
| | | * |
| | | * |
| | | * @param id 客户档案主键 |
| | | * @return 客户档案 |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 查询客户档案列表 |
| | | * |
| | | * |
| | | * @param customer 客户档案 |
| | | * @return 客户档案集合 |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 新增客户档案 |
| | | * |
| | | * |
| | | * @param customer 客户档案 |
| | | * @return 结果 |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 修改客户档案 |
| | | * |
| | | * |
| | | * @param customer 客户档案 |
| | | * @return 结果 |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 批量删除客户档案 |
| | | * |
| | | * |
| | | * @param ids 需要删除的客户档案主键集合 |
| | | * @return 结果 |
| | | */ |
| | | int deleteCustomerByIds(Long[] ids); |
| | | |
| | | /** |
| | | * 删除客户档案信息 |
| | | * |
| | | * @param id 客户档案主键 |
| | | * @return 结果 |
| | | */ |
| | | int deleteCustomerById(Long id); |
| | | List<Customer> selectCustomerListByIds(Long[] ids); |
| | | } |