sys_role_dept.go 447 B

1234567891011
  1. // ==========================================================================
  2. // Code generated by GoFrame CLI tool. DO NOT EDIT.
  3. // ==========================================================================
  4. package internal
  5. // SysRoleDept is the golang structure for table sys_role_dept.
  6. type SysRoleDept struct {
  7. RoleId int64 `orm:"role_id,primary" json:"roleId"` // 角色ID
  8. DeptId int64 `orm:"dept_id,primary" json:"deptId"` // 部门ID
  9. }