| | |
| | | package com.ruoyi.basic.service; |
| | | |
| | | import com.ruoyi.basic.entity.Customer; |
| | | 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.dto.CustomerDto; |
| | | import com.ruoyi.basic.entity.Customer; |
| | | import jakarta.servlet.http.HttpServletResponse; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | */ |
| | | public interface CustomerService extends IService<Customer> { |
| | | |
| | | IPage<Customer> selectCustomerList(Page page, CustomerDto customerDto); |
| | | |
| | | List<Customer> customerList(); |
| | | |
| | | int addOrEditCustomer(CustomerDto customerDto); |
| | | |
| | | int delCustomerByIds(Long[] ids); |
| | | |
| | | void customerExport(HttpServletResponse response, CustomerDto customerDto); |
| | | } |