mitao
2025-03-19 e544c9f30239e791903a6c0a1a01784d249957d0
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;
    }
}