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.
28 lines
647 B
28 lines
647 B
5 days ago
|
namespace Admin.NET.Core;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 系统角色机构表
|
||
|
/// </summary>
|
||
|
[SugarTable(null, "系统角色机构表")]
|
||
|
[SystemTable]
|
||
|
public class SysRoleOrg : EntityBaseId
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 角色Id
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnDescription = "角色Id")]
|
||
|
public long RoleId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 机构Id
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnDescription = "机构Id")]
|
||
|
public long OrgId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 机构
|
||
|
/// </summary>
|
||
|
[SugarColumn(IsIgnore = true)]
|
||
|
[Navigate(NavigateType.OneToOne, nameof(OrgId))]
|
||
|
public SysOrg SysOrg { get; set; }
|
||
|
}
|