obs.go 394 B

1234567891011121314151617
  1. package model
  2. import "time"
  3. type ObsItem struct {
  4. Name string `json:"name"`
  5. LastModified time.Time `json:"lastModified"`
  6. Size uint64 `json:"size"`
  7. IsImage bool `json:"isImage"`
  8. Url string `json:"url"`
  9. IsDir bool `json:"isDir"`
  10. }
  11. type OssType struct {
  12. Url string `bson:"url" json:"url"`
  13. Size int64 `bson:"size" json:"size"`
  14. }