初始
This commit is contained in:
27
internal/app/system/model/do/notifications.go
Normal file
27
internal/app/system/model/do/notifications.go
Normal file
@ -0,0 +1,27 @@
|
||||
// =================================================================================
|
||||
// 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
|
||||
}
|
Reference in New Issue
Block a user