| | |
| | | package com.linghu.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.linghu.model.common.ResponseResult; |
| | | import com.linghu.model.entity.Orders; |
| | | import com.linghu.model.dto.KeywordDto; |
| | | import com.linghu.model.dto.OrderDto; |
| | |
| | | import java.util.List; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.linghu.model.page.CustomPage; |
| | | |
| | | /** |
| | | * @author xy |
| | |
| | | * 获取客户列表 |
| | | */ |
| | | Page<String> getClientList(String clientName,Integer pageNum, Integer pageSize); |
| | | |
| | | ResponseResult<CustomPage<Orders>> getCustomPageResponseResult(Integer pageNum, Integer pageSize, String clientName, Integer status, String timeRange); |
| | | |
| | | ResponseResult<Orders> getOrdersResponseResult(OrderDto orderDto); |
| | | |
| | | ResponseResult<Void> getVoidResponseResult(String orderId); |
| | | |
| | | ResponseResult<Void> updateOrder(OrderDto orderDto); |
| | | |
| | | ResponseResult<Orders> getOrderById(String orderId); |
| | | } |