| | |
| | | package com.linghu.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.linghu.model.entity.Orders; |
| | | import com.linghu.model.dto.KeywordDto; |
| | | import com.linghu.model.dto.OrderDto; |
| | | |
| | | import java.time.LocalDateTime; |
| | | import java.util.List; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | |
| | | /** |
| | |
| | | * @param orderDto 订单数据传输对象 |
| | | * @return 是否保存成功 |
| | | */ |
| | | boolean saveOrderWithKeywords(OrderDto orderDto,String order_id); |
| | | boolean saveOrderWithKeywords(OrderDto orderDto, String order_id); |
| | | |
| | | List<KeywordDto> getKeywordListByOrderId(String order_id); |
| | | |
| | | /** |
| | | * 获取客户列表 |
| | | */ |
| | | Page<String> getClientList(String clientName,Integer pageNum, Integer pageSize); |
| | | } |