26 lines
1.4 KiB
Go
26 lines
1.4 KiB
Go
|
// =================================================================================
|
||
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||
|
// =================================================================================
|
||
|
|
||
|
package entity
|
||
|
|
||
|
import (
|
||
|
"github.com/gogf/gf/v2/os/gtime"
|
||
|
)
|
||
|
|
||
|
// Notifications is the golang structure for table notifications.
|
||
|
type Notifications struct {
|
||
|
Id uint `json:"id" description:""`
|
||
|
CreatedAt *gtime.Time `json:"created_at" description:""`
|
||
|
NotificationText string `json:"notification_text" description:"通知正文"`
|
||
|
Route string `json:"route" description:"跳转的路由"`
|
||
|
NotificationTime string `json:"notification_time" description:"通知时间"`
|
||
|
Initiator int `json:"initiator" description:"发起人"`
|
||
|
ProjectId int `json:"project_id" description:"项目ID"`
|
||
|
Positions string `json:"positions" description:"通知岗位列表"`
|
||
|
Title string `json:"title" description:"通知标题"`
|
||
|
IsApp int `json:"is_app" description:"0 PC | 1 App | 2 新闻"`
|
||
|
Files string `json:"files" description:"附件"`
|
||
|
IntroduceId int `json:"introduce_id" description:"项目新闻的ID"`
|
||
|
}
|