Files
epic-go/internal/model/do/system_user_post.go
hu xiaotong 85e3a6540b init
2025-06-20 17:17:02 +08:00

25 lines
852 B
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"
)
// SystemUserPost is the golang structure of table system_user_post for DAO operations like Where/Data.
type SystemUserPost struct {
g.Meta `orm:"table:system_user_post, do:true"`
Id interface{} // id
UserId interface{} // 用户ID
PostId interface{} // 岗位ID
Creator interface{} // 创建者
CreateTime *gtime.Time // 创建时间
Updater interface{} // 更新者
UpdateTime *gtime.Time // 更新时间
Deleted interface{} // 是否删除
TenantId interface{} // 租户编号
}