payload.go 372 B

1234567891011121314151617
  1. // Package payload defines all the payload structures used in tasks
  2. package payload
  3. type SendWxPayload struct {
  4. Ip string `json:"ip"`
  5. Number int `json:"number"`
  6. WxList []WxList `json:"wx_list"`
  7. }
  8. type WxList struct {
  9. Port string `json:"port"`
  10. Wxid string `json:"wxid"`
  11. Nickname string `json:"nickname"`
  12. }
  13. type SendWxOnTimeoutPayload struct {
  14. }