| | |
| | | import com.ruoyi.basic.dto.CustomerDto; |
| | | import com.ruoyi.basic.dto.CustomerPrivatePoolDto; |
| | | import com.ruoyi.basic.pojo.Customer; |
| | | import com.ruoyi.basic.vo.CustomerVo; |
| | | import com.ruoyi.framework.web.domain.AjaxResult; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | |
| | |
| | | * @param id 客户档案主键 |
| | | * @return 客户详情DTO |
| | | */ |
| | | Customer selectCustomerDetailById(Long id); |
| | | CustomerVo selectCustomerDetailById(Long id); |
| | | |
| | | /** |
| | | * 查询客户档案列表 |
| | |
| | | AjaxResult importData(MultipartFile file); |
| | | |
| | | IPage<CustomerDto> selectCustomerList(Page<CustomerDto> page, CustomerDto customer); |
| | | |
| | | void assignCustomer(CustomerDto customer); |
| | | |
| | | void recycleCustomer(CustomerDto customer); |
| | | } |