2022-02-25 17:11:17 +08:00
|
|
|
// =================================================================================
|
|
|
|
// Code generated by GoFrame CLI tool. DO NOT EDIT.
|
|
|
|
// =================================================================================
|
|
|
|
|
2022-11-24 23:37:34 +08:00
|
|
|
package do
|
2022-02-25 17:11:17 +08:00
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/gogf/gf/v2/frame/g"
|
|
|
|
)
|
|
|
|
|
|
|
|
// AdminRoleDept is the golang structure of table hg_admin_role_dept for DAO operations like Where/Data.
|
|
|
|
type AdminRoleDept struct {
|
2022-11-24 23:37:34 +08:00
|
|
|
g.Meta `orm:"table:hg_admin_role_dept, do:true"`
|
2022-02-25 17:11:17 +08:00
|
|
|
RoleId interface{} // 角色ID
|
|
|
|
DeptId interface{} // 部门ID
|
|
|
|
}
|