| | |
| | | |
| | | import com.jilongda.applet.model.TOptometry; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.jilongda.applet.query.TOptometryQuery; |
| | | import com.jilongda.applet.vo.TOptometryVO; |
| | | import com.jilongda.common.basic.PageInfo; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | */ |
| | | public interface TOptometryMapper extends BaseMapper<TOptometry> { |
| | | |
| | | /** |
| | | * 分页查询 |
| | | * @param query |
| | | * @param pageInfo |
| | | * @return |
| | | */ |
| | | List<TOptometryVO> pageList(@Param("query") TOptometryQuery query, @Param("pageInfo")PageInfo<TOptometryVO> pageInfo); |
| | | |
| | | } |