| | |
| | | import com.ruoyi.integration.api.factory.SendMessageFallbackFactory; |
| | | import com.ruoyi.integration.api.model.PlatformStartCharging; |
| | | import com.ruoyi.integration.api.model.PlatformStopCharging; |
| | | import com.ruoyi.integration.api.model.QrCodeDelivery; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | |
| | | */ |
| | | @PostMapping("/sendMessage/platformStopCharging") |
| | | String platformStopCharging(@RequestBody PlatformStopCharging platformStopCharging); |
| | | |
| | | |
| | | /** |
| | | * 二维码下发 |
| | | * @param qrCodeDelivery |
| | | * @return |
| | | */ |
| | | @PostMapping("/sendMessage/qrCodeDelivery") |
| | | String qrCodeDelivery(@RequestBody QrCodeDelivery qrCodeDelivery); |
| | | } |