无关风月
4 天以前 baed9b68c8cb6b693d3c010f039d2c55bf242e0e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.ruoyi.system.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.common.basic.PageInfo;
import com.ruoyi.system.model.ProjectMain;
import com.ruoyi.system.query.ProjectMainListQuery;
import com.ruoyi.system.query.ProjectPhaseListQuery;
import com.ruoyi.system.vo.ProjectMainListVO;
import com.ruoyi.system.vo.ProjectPhaseListVO;
 
/**
 * <p>
 * 项目主表 服务类
 * </p>
 *
 * @author WuGuanFengYue
 * @since 2025-10-16
 */
public interface ProjectMainService extends IService<ProjectMain> {
 
    PageInfo<ProjectMainListVO> pageList(ProjectMainListQuery query);
 
    PageInfo<ProjectPhaseListVO> pageListPhase(ProjectPhaseListQuery query);
}