download_file.go 232 B

1234567891011
  1. package request
  2. type DownloadRequest struct {
  3. GameId int `json:"game_id"`
  4. Md5String string `json:"md5_string"`
  5. }
  6. type UpdateScriptStatusRequest struct {
  7. State int `json:"state"` // 状态-1关闭,1开启
  8. Id int `json:"id"`
  9. }