| | |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestParam; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | import springfox.documentation.annotations.ApiIgnore; |
| | | |
| | |
| | | private final IAlarmGetService alarmGetService; |
| | | private final PatrolTaskClient patrolTaskClient; |
| | | private final IZtApiService ztApiService; |
| | | private final IOpenApiService openApiService; |
| | | |
| | | |
| | | @Override |
| | |
| | | }); |
| | | } |
| | | |
| | | /** |
| | | * 实时测点测值输入 |
| | | * @param type 1:渗压,2:渗流,3:X位移,4:Y位移,5:Z位移 |
| | | */ |
| | | @GetMapping(POINT_VALUE_INLET) |
| | | public void pointValueInlet(String type){ |
| | | openApiService.realStationInput(type); |
| | | } |
| | | |
| | | } |