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
|
* @date 2025/3/19
|
*/
|
@Service
|
@RequiredArgsConstructor(onConstructor_ = {@Lazy})
|
public class ScreenService {
|
/**
|
* 获取顶部统计数据
|
* @return
|
*/
|
public ScreenTopStaticsDataVO getTopStaticsData() {
|
return null;
|
}
|
|
/**
|
* 区域租金排名
|
* @return
|
*/
|
public List<ScreenRentRankVO> rentRank() {
|
return null;
|
}
|
}
|