zhang_nuo
3 天以前 dcb687e06191ebd38fd1b44a76a77bf20a1d9b8e
src/main/java/com/ruoyi/aftersalesservice/service/AfterSalesServiceService.java
@@ -4,7 +4,10 @@
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
@@ -19,9 +22,12 @@
     * @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();
}