mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-11-12 20:23:52 +08:00
发布v2.18.6版本,更新内容请查看:https://github.com/bufanyun/hotgo/blob/v2.0/docs/guide-zh-CN/start-update-log.md
This commit is contained in:
@@ -12,21 +12,21 @@ import (
|
||||
// SysAttachment is the golang structure of table hg_sys_attachment for DAO operations like Where/Data.
|
||||
type SysAttachment struct {
|
||||
g.Meta `orm:"table:hg_sys_attachment, do:true"`
|
||||
Id interface{} // 文件ID
|
||||
AppId interface{} // 应用ID
|
||||
MemberId interface{} // 管理员ID
|
||||
CateId interface{} // 上传分类
|
||||
Drive interface{} // 上传驱动
|
||||
Name interface{} // 文件原始名
|
||||
Kind interface{} // 上传类型
|
||||
MimeType interface{} // 扩展类型
|
||||
NaiveType interface{} // NaiveUI类型
|
||||
Path interface{} // 本地路径
|
||||
FileUrl interface{} // url
|
||||
Size interface{} // 文件大小
|
||||
Ext interface{} // 扩展名
|
||||
Md5 interface{} // md5校验码
|
||||
Status interface{} // 状态
|
||||
Id any // 文件ID
|
||||
AppId any // 应用ID
|
||||
MemberId any // 管理员ID
|
||||
CateId any // 上传分类
|
||||
Drive any // 上传驱动
|
||||
Name any // 文件原始名
|
||||
Kind any // 上传类型
|
||||
MimeType any // 扩展类型
|
||||
NaiveType any // NaiveUI类型
|
||||
Path any // 本地路径
|
||||
FileUrl any // url
|
||||
Size any // 文件大小
|
||||
Ext any // 扩展名
|
||||
Md5 any // md5校验码
|
||||
Status any // 状态
|
||||
CreatedAt *gtime.Time // 创建时间
|
||||
UpdatedAt *gtime.Time // 修改时间
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user