OpenApi.java 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. package com.gzlh.api;
  2. import cn.hutool.core.thread.ThreadUtil;
  3. import com.gzlh.bus.SysConfig;
  4. import com.gzlh.config.ModuleEnum;
  5. import com.gzlh.bus.EventBus;
  6. import com.gzlh.config.SystemObject;
  7. import com.gzlh.config.dto.SerialSetting;
  8. import com.gzlh.device.electron.job.ElectronReadJob;
  9. import com.gzlh.device.led.event.LedDefaultEvent;
  10. import com.gzlh.device.led.utils.LedOptions;
  11. import com.gzlh.utils.ResultJson;
  12. import com.gzlh.device.weighbridge.event.WeighbridgeEvent;
  13. import org.springframework.web.bind.annotation.RequestMapping;
  14. import org.springframework.web.bind.annotation.RestController;
  15. import javax.annotation.Resource;
  16. @RestController
  17. @RequestMapping("open")
  18. public class OpenApi {
  19. @Resource
  20. EventBus eventBus;
  21. @RequestMapping("test")
  22. public ResultJson test(String msg,String line,String showType,String color){
  23. eventBus.startEvent(ModuleEnum.LED_MODULE.getModuleEn()+"."+ LedDefaultEvent.READ);
  24. eventBus.startEvent(ModuleEnum.WEIGHBRIDGE_MODULE.getModuleEn()+"."+ WeighbridgeEvent.READ);
  25. System.out.println();
  26. SerialSetting.LedDTO ledDTO= SysConfig.serialSetting.getLed();
  27. LedOptions ledOptions=new LedOptions();
  28. ledOptions.setLine(line).setShowType(showType).setColor(color);
  29. SystemObject.ledFactory.handler(ledDTO.getBrand()).sendMsg(msg,ledOptions);
  30. return ResultJson.success();
  31. }
  32. @RequestMapping("electron")
  33. public ResultJson test(String msg){
  34. ElectronReadJob job= new ElectronReadJob("4002FEC0");
  35. ThreadUtil.execute(job);
  36. return ResultJson.success();
  37. }
  38. }