mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-01-31 00:38:37 +08:00
17 lines
546 B
Go
17 lines
546 B
Go
// =================================================================================
|
|
// Code generated by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package do
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/frame/g"
|
|
)
|
|
|
|
// AdminMemberPost is the golang structure of table hg_admin_member_post for DAO operations like Where/Data.
|
|
type AdminMemberPost struct {
|
|
g.Meta `orm:"table:hg_admin_member_post, do:true"`
|
|
MemberId interface{} // 管理员ID
|
|
PostId interface{} // 岗位ID
|
|
}
|