This commit is contained in:
2025-07-07 20:11:59 +08:00
parent ab0fdbc447
commit 06e3aa2eb3
2009 changed files with 193082 additions and 0 deletions

View 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
}