6
0

announcement_read_record.go 1.2 KB

1234567891011121314151617181920212223
  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. // AnnouncementReadRecord is the golang structure for table announcement_read_record.
  9. type AnnouncementReadRecord struct {
  10. Id int `orm:"Id,primary" json:"id"` // 主键ID
  11. MessageId int `orm:"MessageId" json:"messageId"` // 消息id
  12. UserId int `orm:"UserId" json:"userId"` // 消息id
  13. CreatedBy string `orm:"CreatedBy" json:"createdBy"` // 创建人
  14. CreatedAt *gtime.Time `orm:"CreatedAt" json:"createdAt"` // 创建时间
  15. UpdatedBy string `orm:"UpdatedBy" json:"updatedBy"` // 更新人
  16. UpdatedAt *gtime.Time `orm:"UpdatedAt" json:"updatedAt"` // 更新时间
  17. DeletedAt *gtime.Time `orm:"DeletedAt" json:"deletedAt"` // 删除时间
  18. CreatedById int `orm:"CreatedById" json:"createdById"` // 创建人ID
  19. UpdatedById int `orm:"UpdatedById" json:"updatedById"` // 更新人ID
  20. }