广告涉及的mq都放这里
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

28 行
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. )