28 lines
963 B
Go
28 lines
963 B
Go
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package do
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/frame/g"
|
|
"github.com/gogf/gf/v2/os/gtime"
|
|
)
|
|
|
|
// InfraFile is the golang structure of table infra_file for DAO operations like Where/Data.
|
|
type InfraFile struct {
|
|
g.Meta `orm:"table:infra_file, do:true"`
|
|
Id interface{} // 文件编号
|
|
ConfigId interface{} // 配置编号
|
|
Name interface{} // 文件名
|
|
Path interface{} // 文件路径
|
|
Url interface{} // 文件 URL
|
|
Type interface{} // 文件类型
|
|
Size interface{} // 文件大小
|
|
Creator interface{} // 创建者
|
|
CreateTime *gtime.Time // 创建时间
|
|
Updater interface{} // 更新者
|
|
UpdateTime *gtime.Time // 更新时间
|
|
Deleted interface{} // 是否删除
|
|
}
|