From e544c9f30239e791903a6c0a1a01784d249957d0 Mon Sep 17 00:00:00 2001
From: mitao <2763622819@qq.com>
Date: 星期三, 19 三月 2025 18:19:07 +0800
Subject: [PATCH] 大屏接口

---
 ruoyi-system/src/main/java/com/ruoyi/system/service/impl/ScreenService.java |   18 ++++++++++++++++++
 1 files changed, 18 insertions(+), 0 deletions(-)

diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/ScreenService.java b/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/ScreenService.java
index c1b1e70..cf3554a 100644
--- a/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/ScreenService.java
+++ b/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/ScreenService.java
@@ -1,8 +1,12 @@
 package com.ruoyi.system.service.impl;
 
+import com.ruoyi.system.vo.ScreenRentRankVO;
+import com.ruoyi.system.vo.ScreenTopStaticsDataVO;
 import lombok.RequiredArgsConstructor;
 import org.springframework.context.annotation.Lazy;
 import org.springframework.stereotype.Service;
+
+import java.util.List;
 
 /**
  * @author mitao
@@ -11,5 +15,19 @@
 @Service
 @RequiredArgsConstructor(onConstructor_ = {@Lazy})
 public class ScreenService {
+    /**
+     * 获取顶部统计数据
+     * @return
+     */
+    public ScreenTopStaticsDataVO getTopStaticsData() {
+        return null;
+    }
 
+    /**
+     * 区域租金排名
+     * @return
+     */
+    public List<ScreenRentRankVO> rentRank() {
+        return null;
+    }
 }

--
Gitblit v1.7.1