monitor.go 332 B

12345678910111213
  1. package model
  2. // BAP for wechat msg.
  3. type BAP struct {
  4. UserName string `json:"username"`
  5. Title string `json:"title"`
  6. Content string `json:"content"`
  7. URL string `json:"url"`
  8. Ty string `json:"type"`
  9. Token string `json:"token"`
  10. Signature string `json:"signature"`
  11. TimeStamp int64 `json:"timestamp"`
  12. }