sys_user_group.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. // SysUserGroup is the golang structure for table sys_user_group.
  6. type SysUserGroup struct {
  7. UserId int `orm:"user_id,primary" json:"userId"` // 用户ID
  8. GroupId int `orm:"group_id,primary" json:"groupId"` // 用户组ID
  9. }