蛋蛋星球-客户端
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
 
 
 
 
 
 

19 рядки
588 B

  1. package comm
  2. type AccessRecordsReq struct {
  3. Index string `json:"index,required"` // 页面标签
  4. }
  5. type ImgReqUploadReq struct {
  6. FileName string `json:"file_name,required" binding:"required" example:"文件名"`
  7. ContentType string `json:"content_type,required" binding:"required" example:"image/jpeg"`
  8. }
  9. type UploadReq struct {
  10. FileName string `json:"file_name" binding:"required" example:"文件名"`
  11. File string `json:"file" binding:"required" example:"文件内容(base64)"`
  12. }
  13. type ImgReqUploadResp struct {
  14. SignUrl string `json:"sign_url" example:"签名上传url"`
  15. }