upload.go 250 B

123456789101112
  1. // Copyright 2019 githup.com. All rights reserved.
  2. // Use of this source code is governed by githup.com.
  3. package v1
  4. import (
  5. "smart-supplier-management-gateway/param/base"
  6. )
  7. type UploadResponse struct {
  8. base.Result
  9. Data string `json:"data"`
  10. }