Pu Zhibing
3 天以前 49f98d682437c5d91fa07a72bdc3cb45c0600f82
ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/service/TScreenContentService.java
New file
@@ -0,0 +1,36 @@
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.HashMap;
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);
    void carportData(Integer parkingPlace, Integer remainPlace);
    HashMap<String, Object> getCarportData();
}