| | |
| | | package com.kidgrow.usercenter.mapper; |
| | | |
| | | import com.kidgrow.usercenter.model.SysArea; |
| | | import com.kidgrow.db.mapper.SuperMapper; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.kidgrow.usercenter.model.SysArea; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | |
| | | */ |
| | | public interface SysAreaMapper extends SuperMapper<SysArea> { |
| | | /** |
| | | * 分页查询省市区数据表列表 |
| | | * @param page |
| | | * 查询省市区数据表列表 |
| | | * @param params |
| | | * @return |
| | | */ |
| | | List<SysArea> findList(Page<SysArea> page, @Param("p") Map<String, Object> params); |
| | | List<SysArea> findList(@Param("p") Map<String, Object> params); |
| | | |
| | | /** |
| | | * 根据SysArea对象当做查询条件进行查询 |