sys_role_dept.go 465 B

1234567891011
  1. // ==========================================================================
  2. // This is auto-generated by gf cli tool. DO NOT EDIT THIS FILE MANUALLY.
  3. // ==========================================================================
  4. package internal
  5. // SysRoleDept is the golang structure for table sys_role_dept.
  6. type SysRoleDept struct {
  7. DeptId int `orm:"dept_id,primary" json:"deptId"` // 部门ID
  8. RoleId int `orm:"role_id,primary" json:"roleId"` // 角色ID
  9. }