| | |
| | | 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; |
| | | |
| | | /** |
| | |
| | | @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(); |
| | | |
| | | |
| | | |
| | | |
| | | } |