CustomRabbitMQProperties.java 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. package com.kmall.admin.config.mq;
  2. /**
  3. * 队列配置
  4. * req_20210826_001
  5. * @author lhm
  6. * @version 1.0
  7. * 2021-08-26 17:08
  8. */
  9. @Deprecated
  10. public class CustomRabbitMQProperties {
  11. /**
  12. * 主要配置
  13. */
  14. private String username;
  15. private String password;
  16. private String host;
  17. private int port;
  18. private String virtualHost;
  19. private int channelCacheSize;
  20. /**
  21. * 是否开启
  22. */
  23. private Boolean open;
  24. /**
  25. * 队列配置
  26. */
  27. private String k_normal_oms_order_to_handle_customs_clearance;
  28. private String q_normal_oms_order_to_handle_customs_clearance;
  29. private String e_normal_oms_order_to_handle_customs_clearance;
  30. public String getUsername() {
  31. return username;
  32. }
  33. public void setUsername(String username) {
  34. this.username = username;
  35. }
  36. public String getPassword() {
  37. return password;
  38. }
  39. public void setPassword(String password) {
  40. this.password = password;
  41. }
  42. public String getHost() {
  43. return host;
  44. }
  45. public void setHost(String host) {
  46. this.host = host;
  47. }
  48. public int getPort() {
  49. return port;
  50. }
  51. public void setPort(int port) {
  52. this.port = port;
  53. }
  54. public String getVirtualHost() {
  55. return virtualHost;
  56. }
  57. public void setVirtualHost(String virtualHost) {
  58. this.virtualHost = virtualHost;
  59. }
  60. public int getChannelCacheSize() {
  61. return channelCacheSize;
  62. }
  63. public void setChannelCacheSize(int channelCacheSize) {
  64. this.channelCacheSize = channelCacheSize;
  65. }
  66. public Boolean getOpen() {
  67. return open;
  68. }
  69. public void setOpen(Boolean open) {
  70. this.open = open;
  71. }
  72. public String getK_normal_oms_order_to_handle_customs_clearance() {
  73. return k_normal_oms_order_to_handle_customs_clearance;
  74. }
  75. public void setK_normal_oms_order_to_handle_customs_clearance(String k_normal_oms_order_to_handle_customs_clearance) {
  76. this.k_normal_oms_order_to_handle_customs_clearance = k_normal_oms_order_to_handle_customs_clearance;
  77. }
  78. public String getQ_normal_oms_order_to_handle_customs_clearance() {
  79. return q_normal_oms_order_to_handle_customs_clearance;
  80. }
  81. public void setQ_normal_oms_order_to_handle_customs_clearance(String q_normal_oms_order_to_handle_customs_clearance) {
  82. this.q_normal_oms_order_to_handle_customs_clearance = q_normal_oms_order_to_handle_customs_clearance;
  83. }
  84. public String getE_normal_oms_order_to_handle_customs_clearance() {
  85. return e_normal_oms_order_to_handle_customs_clearance;
  86. }
  87. public void setE_normal_oms_order_to_handle_customs_clearance(String e_normal_oms_order_to_handle_customs_clearance) {
  88. this.e_normal_oms_order_to_handle_customs_clearance = e_normal_oms_order_to_handle_customs_clearance;
  89. }
  90. }