From 0507b064c36c635fe27d72eeca80a29d29de8dc9 Mon Sep 17 00:00:00 2001
From: puhanshu <a9236326>
Date: 星期一, 17 一月 2022 14:07:45 +0800
Subject: [PATCH] 商业街成为商家增加字段

---
 springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/McsGameDAO.java |   39 +++++++++++++++++++++++++++++++++++++++
 1 files changed, 39 insertions(+), 0 deletions(-)

diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/McsGameDAO.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/McsGameDAO.java
index cb1b332..d7e1a6e 100644
--- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/McsGameDAO.java
+++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/McsGameDAO.java
@@ -68,4 +68,43 @@
      * @return
      */
     Integer selectVerifiedCount(@Param("merchantId") Long merchantId);
+
+    /**
+     * 获取热门游戏
+     * @return
+     */
+    McsGameVO selectPopularGame();
+
+    /**
+     * h5分页游戏查询
+     * @param page
+     * @param minX
+     * @param maxX
+     * @param minY
+     * @param maxY
+     * @param pageMcsGameDTO
+     * @return
+     */
+    IPage<McsGameVO> pageH5McsGame(@Param("page") Page page, @Param("minX") Double minX, @Param("maxX") Double maxX,
+                                   @Param("minY") Double minY, @Param("maxY") Double maxY, @Param("pageMcsGameDTO") PageMcsGameDTO pageMcsGameDTO);
+
+    /**
+     * 游戏详情
+     * @param gameId
+     * @return
+     */
+    McsGameVO selectDetailById(@Param("gameId") Long gameId);
+
+    /**
+     * 通过商家id批量下架戳戳游戏
+     * @param needDealIds
+     * @return
+     */
+    Integer setOffByMerchantIds(@Param("needDealIds") List<Long> needDealIds);
+
+    /**
+     * 获取需要处理的到期数据
+     * @return
+     */
+    List<McsGame> selectNeedDealExpire();
 }

--
Gitblit v1.7.1