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