WarningNoticeTruct.go 939 B

123456789101112131415161718192021222324252627282930313233343536
  1. package WarningNotice
  2. //设备温度异常通知
  3. type Wx_struct struct {
  4. Value string `json:"value"`
  5. }
  6. // 微信_设备温度异常通知
  7. type Wx_t_struct struct {
  8. Corporate Wx_struct `json:"thing14"`
  9. Type Wx_struct `json:"thing7"`
  10. Name Wx_struct `json:"thing2"`
  11. Time Wx_struct `json:"time8"`
  12. //T Wx_struct `json:"character_string3"`
  13. Remark Wx_struct `json:"thing13"`
  14. }
  15. // 微信_设备湿度异常通知
  16. type Wx_h_struct struct {
  17. Corporate Wx_struct `json:"thing14"`
  18. Type Wx_struct `json:"thing4"`
  19. Name Wx_struct `json:"thing2"`
  20. Time Wx_struct `json:"time5"`
  21. //H Wx_struct `json:"short_thing7"`
  22. Remark Wx_struct `json:"thing13"`
  23. }
  24. // 微信_主机报警通知
  25. type Wx_d_struct struct {
  26. Corporate Wx_struct `json:"thing22"`
  27. Type Wx_struct `json:"thing38"`
  28. Name Wx_struct `json:"thing2"`
  29. Time Wx_struct `json:"time4"`
  30. Remark Wx_struct `json:"thing5"`
  31. }