package com.kmall.admin.config.mq; /** * 队列配置 * req_20210826_001 * @author lhm * @version 1.0 * 2021-08-26 17:08 */ @Deprecated public class CustomRabbitMQProperties { /** * 主要配置 */ private String username; private String password; private String host; private int port; private String virtualHost; private int channelCacheSize; /** * 是否开启 */ private Boolean open; /** * 队列配置 */ private String k_normal_oms_order_to_handle_customs_clearance; private String q_normal_oms_order_to_handle_customs_clearance; private String e_normal_oms_order_to_handle_customs_clearance; public String getUsername() { return username; } public void setUsername(String username) { this.username = username; } public String getPassword() { return password; } public void setPassword(String password) { this.password = password; } public String getHost() { return host; } public void setHost(String host) { this.host = host; } public int getPort() { return port; } public void setPort(int port) { this.port = port; } public String getVirtualHost() { return virtualHost; } public void setVirtualHost(String virtualHost) { this.virtualHost = virtualHost; } public int getChannelCacheSize() { return channelCacheSize; } public void setChannelCacheSize(int channelCacheSize) { this.channelCacheSize = channelCacheSize; } public Boolean getOpen() { return open; } public void setOpen(Boolean open) { this.open = open; } public String getK_normal_oms_order_to_handle_customs_clearance() { return k_normal_oms_order_to_handle_customs_clearance; } public void setK_normal_oms_order_to_handle_customs_clearance(String k_normal_oms_order_to_handle_customs_clearance) { this.k_normal_oms_order_to_handle_customs_clearance = k_normal_oms_order_to_handle_customs_clearance; } public String getQ_normal_oms_order_to_handle_customs_clearance() { return q_normal_oms_order_to_handle_customs_clearance; } public void setQ_normal_oms_order_to_handle_customs_clearance(String q_normal_oms_order_to_handle_customs_clearance) { this.q_normal_oms_order_to_handle_customs_clearance = q_normal_oms_order_to_handle_customs_clearance; } public String getE_normal_oms_order_to_handle_customs_clearance() { return e_normal_oms_order_to_handle_customs_clearance; } public void setE_normal_oms_order_to_handle_customs_clearance(String e_normal_oms_order_to_handle_customs_clearance) { this.e_normal_oms_order_to_handle_customs_clearance = e_normal_oms_order_to_handle_customs_clearance; } }