| | |
| | | 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> |
| | |
| | | */ |
| | | 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); |
| | | |
| | | } |