无关风月
3 天以前 0d1a73f4c0d35951dc42f0e35526d69c0e922afc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.ruoyi.system.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.common.basic.PageInfo;
import com.ruoyi.system.model.ProjectStorage;
import com.ruoyi.system.query.ProjectStorageListQuery;
import com.ruoyi.system.query.YearTaskListQuery;
import com.ruoyi.system.vo.ProjectStorageListVO;
import com.ruoyi.system.vo.YearTaskListVO;
 
/**
 * <p>
 * 在库项目管理 服务类
 * </p>
 *
 * @author WuGuanFengYue
 * @since 2025-10-16
 */
public interface ProjectStorageService extends IService<ProjectStorage> {
 
    PageInfo<ProjectStorageListVO> pageList(ProjectStorageListQuery query);
}