123456789101112131415161718192021222324252627282930313233343536 |
- package WarningNotice
- //设备温度异常通知
- type Wx_struct struct {
- Value string `json:"value"`
- }
- // 微信_设备温度异常通知
- type Wx_t_struct struct {
- Corporate Wx_struct `json:"thing14"`
- Type Wx_struct `json:"thing7"`
- Name Wx_struct `json:"thing2"`
- Time Wx_struct `json:"time8"`
- //T Wx_struct `json:"character_string3"`
- Remark Wx_struct `json:"thing13"`
- }
- // 微信_设备湿度异常通知
- type Wx_h_struct struct {
- Corporate Wx_struct `json:"thing14"`
- Type Wx_struct `json:"thing4"`
- Name Wx_struct `json:"thing2"`
- Time Wx_struct `json:"time5"`
- //H Wx_struct `json:"short_thing7"`
- Remark Wx_struct `json:"thing13"`
- }
- // 微信_主机报警通知
- type Wx_d_struct struct {
- Corporate Wx_struct `json:"thing22"`
- Type Wx_struct `json:"thing38"`
- Name Wx_struct `json:"thing2"`
- Time Wx_struct `json:"time4"`
- Remark Wx_struct `json:"thing5"`
- }
|