2023-01-20 10:53:34 +08:00

28 lines
1.3 KiB
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// =================================================================================
// Code generated by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package entity
import (
"github.com/gogf/gf/v2/os/gtime"
)
// BigFile is the golang structure for table big_file.
type BigFile struct {
Id uint64 `json:"id" description:""`
Name string `json:"name" description:"文件名称"`
Size int `json:"size" description:"文件大小"`
Path string `json:"path" description:"文件相对路径"`
FullPath string `json:"fullPath" description:"文件绝对路径"`
MimeType string `json:"mimeType" description:"文件类型"`
Source int `json:"source" description:"文件来源 0 - 本地1 - 腾讯云 2 - 七牛云"`
Describe string `json:"describe" description:"描述"`
Md5 string `json:"md5" description:"md5"`
CreatedBy uint64 `json:"createdBy" description:""`
UpdatedBy uint64 `json:"updatedBy" description:""`
CreatedAt *gtime.Time `json:"createdAt" description:""`
UpdatedAt *gtime.Time `json:"updatedAt" description:""`
DeletedAt *gtime.Time `json:"deletedAt" description:""`
}