upload.go 243 B

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