fix:订单优化

This commit is contained in:
momo
2023-11-02 15:58:13 +08:00
parent 3366ed74f4
commit 6cea240822
4 changed files with 20 additions and 20 deletions

View File

@@ -22,17 +22,17 @@ type Upload struct {
}
type UploadBaseReq struct {
ResourceId string
Refresh int64
Source string
FileHash string
FileData string
Metadata string
UploadBucket int64
ApiType int64
UserId int64
GuestId int64
FileByte []byte
ResourceId string `json:"resource_id"`
Refresh int64 `json:"refresh"`
Source string `json:"source"`
FileHash string `json:"file_hash"`
FileData string `json:"file_data"`
Metadata string `json:"metadata"`
UploadBucket int64 `json:"upload_bucket"`
ApiType int64 `json:"api_type"`
UserId int64 `json:"user_id"`
GuestId int64 `json:"guest_id"`
FileByte []byte `json:"file_byte"`
}
type UploadBaseRes struct {