WorkCamera/server/Zr.Admin.NET/ZR.Model/System/Model/SysRoleDept.cs
2025-12-27 12:17:46 +08:00

14 lines
410 B
C#

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