upload.go 371 B

123456789101112131415161718192021
  1. // Copyright 2019 github.com. All rights reserved.
  2. // Use of this source code is governed by github.com.
  3. package v1
  4. import (
  5. "xingjia-management-gateway/param/base"
  6. )
  7. type UploadResponse struct {
  8. base.Result
  9. Data string `json:"data"`
  10. }
  11. type DownLoadQuery struct {
  12. Obj string `form:"obj" json:"obj"`
  13. }
  14. type DownLoadRequest struct {
  15. base.Header
  16. DownLoadQuery
  17. }