无关风月
2025-06-04 81e41215c522743d2d21b8011049347a523ef6ad
ruoyi-system/src/main/java/com/ruoyi/system/mapper/TProjectDeptMapper.java
@@ -1,7 +1,13 @@
package com.ruoyi.system.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.common.basic.PageInfo;
import com.ruoyi.system.model.TProjectDept;
import com.ruoyi.system.query.ProjectDeptListQuery;
import com.ruoyi.system.vo.system.ProjectDeptListVO;
import org.apache.ibatis.annotations.Param;
import java.util.List;
/**
 * <p>
@@ -13,4 +19,6 @@
 */
public interface TProjectDeptMapper extends BaseMapper<TProjectDept> {
    List<ProjectDeptListVO> pageList(@Param("query")ProjectDeptListQuery query, @Param("pageInfo")PageInfo<ProjectDeptListVO> pageInfo);
}