yaowanxin
3 天以前 b33e6f53dd537abaebad066de12474580fcc33b2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package com.ruoyi.warehouse.service;
 
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
* @description 针对表【documentation(文档信息表)】的数据库操作Service
* @createDate 2025-08-14 14:05:49
*/
public interface DocumentationService extends IService<Documentation> {
 
    IPage<DocumentationDto> listPage(Page page, Documentation documentation);
 
    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();
}