| | |
| | | package com.java110.intf.common; |
| | | |
| | | import com.java110.config.feign.FeignConfiguration; |
| | | import com.java110.dto.chargeMachineOrder.NotifyChargeOrderDto; |
| | | import com.java110.dto.meterWater.NotifyMeterWaterOrderDto; |
| | | import com.java110.dto.charge.NotifyChargeOrderDto; |
| | | import com.java110.vo.ResultVo; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.http.ResponseEntity; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RequestMethod; |
| | |
| | | * @param notifyChargeOrderDto 数据对象分享 |
| | | * @return 小区下的小区楼记录数 |
| | | */ |
| | | @RequestMapping(value = "/heartbeat", method = RequestMethod.POST) |
| | | ResponseEntity<String> heartbeat(@RequestBody NotifyChargeOrderDto notifyChargeOrderDto); |
| | | @RequestMapping(value = "/workHeartbeat", method = RequestMethod.POST) |
| | | ResultVo workHeartbeat(@RequestBody NotifyChargeOrderDto notifyChargeOrderDto); |
| | | |
| | | |
| | | } |