package com.ruoyi.system.mapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.ruoyi.common.basic.PageInfo;
|
import com.ruoyi.system.model.ProjectStorage;
|
import com.ruoyi.system.query.ProjectStorageListQuery;
|
import com.ruoyi.system.vo.ProjectStorageListVO;
|
import org.apache.ibatis.annotations.Param;
|
|
import java.util.List;
|
|
/**
|
* <p>
|
* 在库项目管理 Mapper 接口
|
* </p>
|
*
|
* @author WuGuanFengYue
|
* @since 2025-10-16
|
*/
|
public interface ProjectStorageMapper extends BaseMapper<ProjectStorage> {
|
|
List<ProjectStorageListVO> pageList(@Param("query")ProjectStorageListQuery query, @Param("pageInfo")PageInfo<ProjectStorageListVO> pageInfo);
|
}
|