ModbusProperties.java 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. package com.jwk.spring.boot.autoconfigure;
  2. import lombok.Data;
  3. import org.springframework.boot.context.properties.ConfigurationProperties;
  4. /**
  5. * @author JWK
  6. * @version 1.0
  7. * @date 2022/12/2 15:40
  8. */
  9. @Data
  10. @ConfigurationProperties(prefix = ModbusProperties.DEMO_PREFIX)
  11. public class ModbusProperties {
  12. public static final String DEMO_PREFIX = "modbus";
  13. /**
  14. * 注入方式:
  15. * '@Autowired(required = true)'
  16. * private ModbusRtuMasterTemplate modbusRtuMasterTemplateFirst;
  17. * 没有open=true的bean千万不要注入,@Autowired(required = false)也不行.
  18. */
  19. private RtuMasterOrder rtuMaster;
  20. /**
  21. * 注入方式:
  22. * '@Autowired(required = true)'
  23. * private ModbusTcpMasterTemplate modbusTcpMasterTemplateFirst;
  24. * 没有open=true的bean千万不要注入,@Autowired(required = false)也不行.
  25. */
  26. private TcpMasterOrder tcpMaster;
  27. @Data
  28. public static class RtuMasterOrder {
  29. private RtuMaster first;
  30. private RtuMaster second;
  31. private RtuMaster third;
  32. private RtuMaster fourth;
  33. private RtuMaster fifth;
  34. }
  35. @Data
  36. public static class TcpMasterOrder {
  37. private TcpMaster first;
  38. private TcpMaster second;
  39. private TcpMaster third;
  40. private TcpMaster fourth;
  41. private TcpMaster fifth;
  42. private TcpMaster sixth;
  43. private TcpMaster seventh;
  44. private TcpMaster eighth;
  45. private TcpMaster ninth;
  46. private TcpMaster tenth;
  47. }
  48. @Data
  49. public static class RtuMaster {
  50. /**
  51. * 开启串口
  52. */
  53. private boolean open = false;
  54. /**
  55. * 串口
  56. */
  57. private String port = "COM1";
  58. /**
  59. * 波特率
  60. */
  61. private Integer baudRate = 9600;
  62. /**
  63. * 数据位的位数,RTU是8位,ASCII是7位
  64. */
  65. private Integer dataBits = 8;
  66. /**
  67. * 停止位的位数,如果无奇偶校验为2,有奇偶校验为1
  68. */
  69. private Integer stopBits = 1;
  70. /**
  71. * 奇偶校验位,无校验是0,奇校验是1,偶校验是2
  72. */
  73. private Integer parity = 0;
  74. /**
  75. * 硬件之间输入流应答控制
  76. */
  77. private Integer flowControlIn = 0;
  78. /**
  79. * 硬件之间输出流应答控制
  80. */
  81. private Integer flowControlOut = 0;
  82. }
  83. @Data
  84. public static class TcpMaster {
  85. /**
  86. * 开启TCP连接
  87. */
  88. private boolean open = false;
  89. /**
  90. * ip地址
  91. */
  92. private String host = "127.0.0.1";
  93. /**
  94. * 端口
  95. */
  96. private Integer port = 502;
  97. }
  98. }