skjcmanager/skjcmanager-service/skjcmanager-nky/src/main/java/cn/gistack/nky/feign/NkyClientImpl.java
@@ -22,6 +22,7 @@
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;
@@ -42,6 +43,7 @@
   private final IAlarmGetService alarmGetService;
   private final PatrolTaskClient patrolTaskClient;
   private final IZtApiService ztApiService;
   private final IOpenApiService openApiService;
   @Override
@@ -227,4 +229,13 @@
      });
   }
   /**
    * 实时测点测值输入
    * @param type 1:渗压,2:渗流,3:X位移,4:Y位移,5:Z位移
    */
   @GetMapping(POINT_VALUE_INLET)
   public void pointValueInlet(String type){
      openApiService.realStationInput(type);
   }
}