ZrAdminNetCore/ZR.Model/System/SysRoleDept.cs
2023-06-09 08:40:35 +08:00

16 lines
416 B
C#

using SqlSugar;
namespace ZR.Model.System
{
[SugarTable("sys_role_dept", "角色部门")]
[Tenant(0)]
public class SysRoleDept
{
[SugarColumn(ExtendedAttribute = ProteryConstant.NOTNULL, IsPrimaryKey = true)]
public long RoleId { get; set; }
[SugarColumn(ExtendedAttribute = ProteryConstant.NOTNULL, IsPrimaryKey = true)]
public long DeptId { get; set; }
}
}