| 12345678910111213141516171819202122232425 |
- // ==========================================================================
- // This is auto-generated by gf cli tool. DO NOT EDIT THIS FILE MANUALLY.
- // ==========================================================================
- package internal
- import (
- "github.com/gogf/gf/os/gtime"
- )
- // AnnouncementFile is the golang structure for table announcement_file.
- type AnnouncementFile struct {
- Id int `orm:"Id,primary" json:"id"` // 主键ID
- MessageId int `orm:"MessageId" json:"messageId"` // 消息id
- FileName string `orm:"FileName" json:"fileName"` // 资料名称
- FileUrl string `orm:"FileUrl" json:"fileUrl"` // 资料url
- FileId string `orm:"FileId" json:"fileId"` // 文件服务ID
- FileSize string `orm:"FileSize" json:"fileSize"` // 大小
- FileExtend string `orm:"FileExtend" json:"fileExtend"` // 扩展名
- CreatedBy string `orm:"CreatedBy" json:"createdBy"` // 创建人
- CreatedAt *gtime.Time `orm:"CreatedAt" json:"createdAt"` // 创建时间
- UpdatedBy string `orm:"UpdatedBy" json:"updatedBy"` // 更新人
- UpdatedAt *gtime.Time `orm:"UpdatedAt" json:"updatedAt"` // 更新时间
- DeletedAt *gtime.Time `orm:"DeletedAt" json:"deletedAt"` // 删除时间
- }
|