// Code generated by sql2gorm. DO NOT EDIT. package entity import ( "time" ) type ProjectBrief struct { ProjectBriefID int64 `gorm:"column:project_brief_id;primary_key;AUTO_INCREMENT"` // 项目id FileUrl string `gorm:"column:file_url"` // 图片url FileName string `gorm:"column:file_name"` // 文件名称 FileUid string `gorm:"column:file_uid"` ProjectID string `gorm:"column:project_id"` // 所属项目id CreatedAt time.Time `gorm:"column:created_at"` // 创建时间 Type int64 `gorm:"column:type"` // 手卡类型(1图片 2文档) } func (m *ProjectBrief) TableName() string { return "project_brief" }