| | |
| | | import com.ruoyi.chargingPile.api.model.TChargingPile; |
| | | import com.ruoyi.chargingPile.api.query.TChargingGunQuery; |
| | | import com.ruoyi.chargingPile.api.vo.TChargingGunVO; |
| | | import com.ruoyi.chargingPile.dto.ChargeMonitoring; |
| | | import com.ruoyi.chargingPile.service.TChargingGunService; |
| | | import com.ruoyi.chargingPile.service.TChargingPileService; |
| | | import com.ruoyi.common.core.domain.R; |
| | |
| | | @ApiImplicitParams({ |
| | | @ApiImplicitParam(value = "充电桩id", name = "id", dataTypeClass = Integer.class, required = true) |
| | | }) |
| | | public AjaxResult delChargingPile(@PathVariable Integer id){ |
| | | public AjaxResult delChargingPile(@PathVariable Integer[] id){ |
| | | return chargingPileService.delChargingPile(id); |
| | | } |
| | | |
| | |
| | | |
| | | |
| | | |
| | | @GetMapping("/chargeMonitoring/{siteId}") |
| | | @ApiOperation(value = "修改备注", tags = {"管理后台-充电设备监控"}) |
| | | public AjaxResult<ChargeMonitoring> chargeMonitoring(@PathVariable Integer siteId){ |
| | | |
| | | } |
| | | } |
| | | |