| | |
| | | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.ruoyi.warehouse.dto.DocumentationDto; |
| | | import com.ruoyi.warehouse.pojo.Documentation; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * @author 86151 |
| | |
| | | */ |
| | | public interface DocumentationService extends IService<Documentation> { |
| | | |
| | | IPage<Documentation> listPage(Page page, Documentation documentation); |
| | | IPage<DocumentationDto> listPage(Page page, Documentation documentation); |
| | | |
| | | void export(HttpServletResponse response); |
| | | void export(HttpServletResponse response,Documentation documentation); |
| | | |
| | | boolean deleteByIds(List<Long> ids); |
| | | |
| | | List<DocumentationDto> listAll(); |
| | | Integer getTotalDocsCount(); |
| | | |
| | | Integer getCategoryNumCount(); |
| | | |
| | | Integer getBorrowedDocsCount(); |
| | | |
| | | Integer getMonthlyAddedDocsCount(); |
| | | |
| | | |
| | | List<Map<String, Object>> getCategoryDistribution(); |
| | | |
| | | |
| | | List<Map<String, Object>> getStatusDistribution(); |
| | | } |