// Copyright 2019 getensh.com. All rights reserved. // Use of this source code is governed by getensh.com. package apis // 生成oss上传相关信息 type AuthGetOSSInfoReq struct { Uid int64 `json:"uid" description:"用户唯一id,基数从 10000 开始"` } type AuthGetOSSInfoReply struct { AccessKeyId string AccessKeySecret string SecurityToken string Expiration int64 }