liujie
10 天以前 483d7b2716740c3033d18b7d149f51f95710bcba
ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/mapper/TScreenContentMapper.java
@@ -4,8 +4,10 @@
import com.ruoyi.other.api.domain.TNotice;
import com.ruoyi.other.api.domain.TScreenContent;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import java.math.BigDecimal;
import java.util.HashMap;
import java.util.List;
/**
@@ -19,7 +21,16 @@
@Mapper
public interface TScreenContentMapper extends BaseMapper<TScreenContent> {
    BigDecimal getCarDisCharge(List<Integer> siteIds);
    BigDecimal getCarDisCharge(@Param("siteIds") List<Integer> siteIds);
    BigDecimal getGreenElectricity(List<Integer> siteIds);
    BigDecimal getGreenElectricity(@Param("siteIds") List<Integer> siteIds);
    void carportData(@Param("parkingPlace") Integer parkingPlace, @Param("remainPlace") Integer remainPlace);
    HashMap<String, Object> getCarportData();
}