无关风月
3 天以前 96928bdb692c62e01105d1d6a7f4bd04df5aa3c0
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
package com.ruoyi.system.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.common.basic.PageInfo;
import com.ruoyi.system.model.ProjectInventory;
import com.ruoyi.system.query.InventoryStorageListQuery;
import com.ruoyi.system.vo.InStorageListVO;
import com.ruoyi.system.vo.InventoryStorageListVO;
import com.ruoyi.system.vo.MonthStorageListVO;
import com.ruoyi.system.vo.OutStorageListVO;
 
/**
 * <p>
 * 存量项目管理 服务类
 * </p>
 *
 * @author WuGuanFengYue
 * @since 2025-10-16
 */
public interface ProjectInventoryService extends IService<ProjectInventory> {
 
    /**
     * 存量项目情况分页列表(按年度分组)
     * @return 分页结果
     */
    PageInfo<InventoryStorageListVO> storagePageList(InventoryStorageListQuery inventoryStorageListQuery);
 
    PageInfo<InStorageListVO> inStoragePageList(InventoryStorageListQuery inventoryStorageListQuery);
 
    PageInfo<OutStorageListVO> outStoragePageList(InventoryStorageListQuery inventoryStorageListQuery);
 
    PageInfo<MonthStorageListVO> monthStoragePageList(InventoryStorageListQuery inventoryStorageListQuery);
 
}