123456789101112131415161718192021 |
- // Copyright 2019 github.com. All rights reserved.
- // Use of this source code is governed by github.com.
- package v1
- import (
- "xingjia-management-gateway/param/base"
- )
- type UploadResponse struct {
- base.Result
- Data string `json:"data"`
- }
- type DownLoadQuery struct {
- Obj string `form:"obj" json:"obj"`
- }
- type DownLoadRequest struct {
- base.Header
- DownLoadQuery
- }
|