You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
631 B
25 lines
631 B
2 years ago
|
using SqlSugar;
|
||
|
namespace WWB.Park.Entity.Tenant
|
||
|
{
|
||
|
[SugarTable("pk_agent_user")]
|
||
|
public class AgentUser : IAgentFilter
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 代理ID
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnName = "agent_id")]
|
||
|
public virtual long AgentId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 用户ID
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnName = "user_id")]
|
||
|
public long UserId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 是否超级管理员
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnName = "is_admin")]
|
||
|
public bool IsAdmin { get; set; }
|
||
|
}
|
||
|
}
|