init
This commit is contained in:
24
internal/model/do/system_user_post.go
Normal file
24
internal/model/do/system_user_post.go
Normal file
@@ -0,0 +1,24 @@
|
||||
// =================================================================================
|
||||
// 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{} // 租户编号
|
||||
}
|
||||
Reference in New Issue
Block a user