| | |
| | | package com.yuanchu.mom.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.yuanchu.mom.dto.InsOrderPlanDTO; |
| | | import com.yuanchu.mom.dto.ReportPageDto; |
| | | import com.yuanchu.mom.pojo.InsReport; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * @author Administrator |
| | |
| | | */ |
| | | public interface InsReportService extends IService<InsReport> { |
| | | |
| | | Map<String,Object> pageInsReport(Page page, ReportPageDto reportPageDto); |
| | | |
| | | String wordToHtml(String path); |
| | | |
| | | int inReport(String url, Integer id); |
| | | |
| | | int upReportUrl(Integer id); |
| | | |
| | | } |