announcement_file.go 1.3 KB

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