minio_file.go 470 B

123456789101112
  1. package models
  2. type MinioFile struct {
  3. ID *string `json:"id" db:"id" id_type:"UUID"`
  4. RefType *string `json:"refType" db:"ref_type"`
  5. RefId *string `json:"refId" db:"ref_id"`
  6. Path *string `json:"path" db:"path"`
  7. ContentType *string `json:"contentType" db:"content_type"`
  8. FileType *string `json:"fileType" db:"file_type"`
  9. FileName *string `json:"fileName" db:"file_name"`
  10. CreateTime *string `json:"createTime" db:"create_time"`
  11. }