| 1234567891011121314151617181920212223 |
- // ==========================================================================
- // This is auto-generated by gf cli tool. DO NOT EDIT THIS FILE MANUALLY.
- // ==========================================================================
- package internal
- import (
- "github.com/gogf/gf/os/gtime"
- )
- // AnnouncementReadRecord is the golang structure for table announcement_read_record.
- type AnnouncementReadRecord struct {
- Id int `orm:"Id,primary" json:"id"` // 主键ID
- MessageId int `orm:"MessageId" json:"messageId"` // 消息id
- UserId int `orm:"UserId" json:"userId"` // 消息id
- 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"` // 删除时间
- CreatedById int `orm:"CreatedById" json:"createdById"` // 创建人ID
- UpdatedById int `orm:"UpdatedById" json:"updatedById"` // 更新人ID
- }
|