| | |
| | | import org.jeecg.modules.dry.service.IDryOpcDeviceService; |
| | | import org.jeecg.modules.dry.vo.CommandMessageVo; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | |
| | | @RestController |
| | | @RequestMapping("/dry/opc") |
| | | @Slf4j |
| | | @ConditionalOnProperty(name = "kangaroohy.milo.enabled", havingValue = "true") |
| | | public class OpcController { |
| | | |
| | | @Autowired |