| | |
| | | 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 |
| | |
| | | */ |
| | | public interface InfoMapper extends BaseMapper<Info> { |
| | | |
| | | Page<ListInfoVo> searchListInfo(@Param("vo") SearchInfoVo vo); |
| | | } |
| | | |
| | | |