| 1234567891011121314151617181920212223242526272829303132 |
- // ==========================================================================
- // This is auto-generated by gf cli tool. DO NOT EDIT THIS FILE MANUALLY.
- // ==========================================================================
- package internal
- import (
- "github.com/gogf/gf/os/gtime"
- )
- // Announcement is the golang structure for table announcement.
- type Announcement struct {
- Title string `orm:"Title" json:"title"` // 标题
- Content string `orm:"Content" json:"content"` // 内容
- Sender string `orm:"Sender" json:"sender"` // 发送者
- SenderId int `orm:"SenderId" json:"senderId"` // 发送者ID
- Status int `orm:"Status" json:"status"` // 状态
- DeptId int `orm:"DeptId" json:"deptId"` // 部门Id
- DeptName string `orm:"DeptName" json:"deptName"` // 部门名称
- PublishTime *gtime.Time `orm:"PublishTime" json:"publishTime"` // 发布时间
- Id int `orm:"Id,primary" json:"id"` // 主键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
- ReceiverDevice string `orm:"ReceiverDevice" json:"receiverDevice"` // 接收设备的终端编码
- Link string `orm:"Link" json:"link"` // 链接
- IsTop int `orm:"IsTop" json:"isTop"` // 是否置顶
- }
|