gongchunyi
22 小时以前 c7cf4606c748e3ef2a4df1811b60e0ef000ff9e8
src/main/java/com/ruoyi/warehouse/service/DocumentationService.java
@@ -8,6 +8,7 @@
import javax.servlet.http.HttpServletResponse;
import java.util.List;
import java.util.Map;
/**
* @author 86151
@@ -16,9 +17,24 @@
*/
public interface DocumentationService extends IService<Documentation> {
    List<DocumentationDto> listPage(Page page, Documentation 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();
}