14 lines
412 B
C#
Raw Permalink Normal View History

2026-01-10 13:47:54 +08:00
namespace RIZO.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; }
}
}