From 0c877ca6f32edb146d15c4593a90b613a650eaed Mon Sep 17 00:00:00 2001
From: puzhibing <393733352@qq.com>
Date: 星期三, 19 七月 2023 11:08:25 +0800
Subject: [PATCH] 更新预约场地部分接口

---
 cloud-server-other/src/main/java/com/dsh/other/mapper/SiteMapper.java |   13 +++++++++++++
 1 files changed, 13 insertions(+), 0 deletions(-)

diff --git a/cloud-server-other/src/main/java/com/dsh/other/mapper/SiteMapper.java b/cloud-server-other/src/main/java/com/dsh/other/mapper/SiteMapper.java
index fbd1db9..ff47827 100644
--- a/cloud-server-other/src/main/java/com/dsh/other/mapper/SiteMapper.java
+++ b/cloud-server-other/src/main/java/com/dsh/other/mapper/SiteMapper.java
@@ -2,6 +2,7 @@
 
 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;
@@ -21,4 +22,16 @@
      * @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);
 }

--
Gitblit v1.7.1