2025-11-24 18:44:06 +08:00
|
|
|
package models
|
|
|
|
|
|
|
|
|
|
// LinkUserRole 用户角色关联表
|
|
|
|
|
type LinkUserRole struct {
|
2026-03-18 18:09:32 +08:00
|
|
|
ID int32 `json:"id" gorm:"column:id"` // 关联ID
|
|
|
|
|
UserID int32 `json:"user_id" gorm:"column:user_id"` // 用户ID
|
|
|
|
|
RoleID int32 `json:"role_id" gorm:"column:user_role_id"` // 角色ID
|
2025-11-24 18:44:06 +08:00
|
|
|
}
|