stra.go 781 B

12345678910111213141516171819202122232425262728
  1. package dataobj
  2. type Strategy struct {
  3. Id int64 `json:"id"`
  4. Idc string `json:"idc"`
  5. Method string `json:"method"`
  6. Url string `json:"url"`
  7. Enable int `json:"enable"`
  8. IP string `json:"ip" xorm:"ip"`
  9. Keywords string `json:"keywords"`
  10. Timeout int `json:"timeout"`
  11. Creator string `json:"creator"`
  12. ExpectCode string `json:"expect_code"`
  13. Note string `json:"note"`
  14. Data string `json:"data"`
  15. Endpoint string `json:"endpoint"`
  16. Header string `json:"header"`
  17. PostData string `json:"post_data"`
  18. Tag string `json:"tag"`
  19. MaxStep int `json:"max_step"`
  20. Times int `json:"times"`
  21. Teams string `json:"teams"`
  22. }
  23. type StrategyResponse struct {
  24. Message string
  25. Data []*Strategy
  26. }