| | |
| | | package com.ruoyi.system.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.ruoyi.common.basic.PageInfo; |
| | | import com.ruoyi.system.domain.TFoundationPerson; |
| | | import com.ruoyi.system.query.TFoundationPersonQuery; |
| | | import com.ruoyi.system.vo.TFoundationPersonVO; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | * 查询基础设置列表 |
| | | * @return |
| | | */ |
| | | List<TFoundationPersonVO> getList(); |
| | | List<TFoundationPersonVO> getList(@Param("query") TFoundationPersonQuery query, @Param("pageInfo")PageInfo<TFoundationPersonVO> pageInfo); |
| | | |
| | | /** |
| | | * 查询基础设置列表 |
| | | * @return |
| | | */ |
| | | List<TFoundationPersonVO> getSetList(); |
| | | |
| | | } |