package com.ruoyi.other.service;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.ruoyi.other.api.domain.TNotice;
|
import com.ruoyi.other.api.domain.TScreenContent;
|
import com.ruoyi.other.vo.EmissionReductionVO;
|
import com.ruoyi.other.vo.PhotovoltaicPowerGenerationVO;
|
import com.ruoyi.other.vo.ScreenTopVO;
|
|
import java.util.List;
|
|
/**
|
* <p>
|
* 服务实现类
|
* </p>
|
*
|
* @author huliguo
|
* @since 2025/5/23
|
*/
|
public interface TScreenContentService extends IService<TScreenContent> {
|
|
EmissionReductionVO emissionReduction(List<Integer> siteIds);
|
|
PhotovoltaicPowerGenerationVO photovoltaicPowerGeneration(List<Integer> siteIds);
|
|
ScreenTopVO top(List<Integer> siteIds);
|
}
|