| | |
| | | import com.ruoyi.chargingPile.api.query.BatchSetAccountingStrategy; |
| | | import com.ruoyi.chargingPile.api.query.PageChargingPileList; |
| | | import com.ruoyi.chargingPile.api.vo.TChargingPileVO; |
| | | import com.ruoyi.chargingPile.dto.ChargeMonitoring; |
| | | import com.ruoyi.chargingPile.dto.ChargingGunCountMonitoring; |
| | | import com.ruoyi.chargingPile.dto.ChargingGunMonitoring; |
| | | import com.ruoyi.chargingPile.dto.GetChargingGunMonitoring; |
| | | import com.ruoyi.common.core.web.domain.AjaxResult; |
| | | import com.ruoyi.common.core.web.page.PageInfo; |
| | | import org.springframework.web.bind.annotation.PathVariable; |
| | |
| | | /** |
| | | * 获取站点下充电桩及充电枪列表 |
| | | * @param siteId |
| | | * @param type |
| | | * @return |
| | | */ |
| | | List<TChargingPileVO> getChargingGunList(Integer siteId); |
| | | List<TChargingPileVO> getChargingGunList(Integer siteId,Integer type); |
| | | |
| | | |
| | | /** |
| | | * 获取充电设备监控数据 |
| | | * @param siteId |
| | | * @return |
| | | */ |
| | | ChargeMonitoring chargeMonitoring(Integer siteId); |
| | | |
| | | |
| | | /** |
| | | * 获取充电枪各种状态汇总 |
| | | * @param siteId 站点id |
| | | * @return |
| | | */ |
| | | ChargingGunCountMonitoring getChargingGunCountMonitoring(Integer siteId); |
| | | |
| | | |
| | | |
| | | /** |
| | | * 获取充电枪监控数据 |
| | | * @param query |
| | | * @return |
| | | */ |
| | | PageInfo<ChargingGunMonitoring> getChargingGunMonitoring(GetChargingGunMonitoring query); |
| | | |
| | | |
| | | /** |
| | | * 定时任务修改充电桩状态 |
| | | */ |
| | | void updateStatus(); |
| | | |
| | | } |