sys_user_role.go 476 B

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