| | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.aftersalesservice.dto.AfterSalesServiceNewDto; |
| | | import com.ruoyi.aftersalesservice.dto.CountDto; |
| | | import com.ruoyi.aftersalesservice.pojo.AfterSalesService; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author :yys |
| | |
| | | * @param afterSalesService |
| | | * @return |
| | | */ |
| | | IPage<AfterSalesService> listPage(Page page, AfterSalesService afterSalesService); |
| | | IPage<AfterSalesServiceNewDto> listPage(Page page, AfterSalesServiceNewDto afterSalesService); |
| | | |
| | | boolean addAfterSalesServiceDto(AfterSalesServiceNewDto afterSalesServiceNewDto); |
| | | |
| | | AfterSalesServiceNewDto getAfterSalesServiceNewDtoById(Long id); |
| | | |
| | | List<CountDto> countAfterSalesService(); |
| | | |
| | | } |