sys_group_role.go 477 B

1234567891011
  1. // ==========================================================================
  2. // This is auto-generated by gf cli tool. DO NOT EDIT THIS FILE MANUALLY.
  3. // ==========================================================================
  4. package internal
  5. // SysGroupRole is the golang structure for table sys_group_role.
  6. type SysGroupRole struct {
  7. GroupId int `orm:"group_id,primary" json:"groupId"` // 用户组ID
  8. RoleId int `orm:"role_id,primary" json:"roleId"` // 角色ID
  9. }