buhuazhen
2 天以前 53edb16da9103f717a3beb28de8de1ebcb00157b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.ruoyi.projectManagement.mapper;
 
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.ruoyi.projectManagement.pojo.Info;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.projectManagement.vo.ListInfoVo;
import com.ruoyi.projectManagement.vo.SearchInfoVo;
import org.apache.ibatis.annotations.Param;
 
/**
* @author buhuazhen
* @description 针对表【project_management_info(项目管理信息)】的数据库操作Mapper
* @createDate 2026-03-09 13:57:50
* @Entity com.ruoyi.projectManagement.pojo.Info
*/
public interface InfoMapper extends BaseMapper<Info> {
 
    Page<ListInfoVo> searchListInfo(@Param("vo") SearchInfoVo vo);
}