entity.go 374 B

123456789
  1. package gonsq
  2. //从nsq接收的消息体
  3. type Msg struct {
  4. Id string `json:"id"` //用于标识这个告警分组,及告警方式、告警人
  5. Title string `json:"title"` //非必填项
  6. Text string `json:"text"`
  7. AppendInfo map[string]interface{} `json:"appendinfo"` //附加信息,非必填项
  8. }