28 lines
1.0 KiB
Go
28 lines
1.0 KiB
Go
|
// =================================================================================
|
||
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||
|
// =================================================================================
|
||
|
|
||
|
package do
|
||
|
|
||
|
import (
|
||
|
"github.com/gogf/gf/v2/frame/g"
|
||
|
"github.com/gogf/gf/v2/os/gtime"
|
||
|
)
|
||
|
|
||
|
// Notifications is the golang structure of table notifications for DAO operations like Where/Data.
|
||
|
type Notifications struct {
|
||
|
g.Meta `orm:"table:notifications, do:true"`
|
||
|
Id interface{} //
|
||
|
CreatedAt *gtime.Time //
|
||
|
NotificationText interface{} // 通知正文
|
||
|
Route interface{} // 跳转的路由
|
||
|
NotificationTime interface{} // 通知时间
|
||
|
Initiator interface{} // 发起人
|
||
|
ProjectId interface{} // 项目ID
|
||
|
Positions interface{} // 通知岗位列表
|
||
|
Title interface{} // 通知标题
|
||
|
IsApp interface{} // 0 PC | 1 App | 2 新闻
|
||
|
Files interface{} // 附件
|
||
|
IntroduceId interface{} // 项目新闻的ID
|
||
|
}
|