广告涉及的mq都放这里
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

28 lines
896 B

  1. package md
  2. type MqQueue struct {
  3. ExchangeName string `json:"exchangeName"` //交换机名字
  4. Name string `json:"name"` //队列名字
  5. Type string `json:"type"` //队列类型
  6. IsPersistent bool `json:"is_persistent"` //队列是否持久化
  7. RoutKey string `json:"rout_key"` //路由
  8. BindKey string `json:"bind_key"` //绑定的路由
  9. ConsumeFunName string `json:"consume_fun_name"` //消费方法
  10. }
  11. var RabbitMqQueueKeyList = []*MqQueue{
  12. {
  13. ExchangeName: "zhios.app.ad.original.data.exchange",
  14. Name: "ad_original_data_application",
  15. Type: DirectQueueType,
  16. IsPersistent: false,
  17. RoutKey: "ad_original_data_application",
  18. BindKey: "",
  19. ConsumeFunName: "AdOriginalDataApplication",
  20. },
  21. }
  22. const (
  23. AdOriginalDataApplication = "AdOriginalDataApplication"
  24. )