| | |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.dsh.other.entity.Site; |
| | | import com.dsh.other.model.QueryMySiteVo; |
| | | import com.dsh.other.model.QuerySiteList; |
| | | import com.dsh.other.model.QuerySiteListVo; |
| | | import org.apache.ibatis.annotations.Param; |
| | |
| | | * @return |
| | | */ |
| | | List<QuerySiteListVo> querySiteList(@Param("item") QuerySiteList querySiteList); |
| | | |
| | | |
| | | /** |
| | | * 获取我的预约场地列表 |
| | | * @param uid |
| | | * @param status |
| | | * @param pageNo |
| | | * @param pageSize |
| | | * @return |
| | | */ |
| | | List<QueryMySiteVo> queryMySite(@Param("uid") Integer uid, @Param("status") Integer status, |
| | | @Param("pageNo") Integer pageNo, @Param("pageSize") Integer pageSize); |
| | | } |