using System;
using System.Collections.Generic;
using System.Linq;
using SqlSugar;
namespace WGShare.Domain.Entities
{
///
/// 用户权限关系表
///
[SugarTable("user_perm")]
public class UserPrem
{
///
/// 用户Id
///
[SugarColumn(ColumnName = "user_id", IsPrimaryKey = true)]
public string UserId { get; set; }
///
/// 权限Id
///
[SugarColumn(ColumnName = "perm_id", IsPrimaryKey = true)]
public string PermId { get; set; }
}
}