2024-12-03 09:25:16 +08:00
|
|
|
|
namespace DOAN.Model.System
|
2024-11-28 13:36:05 +08:00
|
|
|
|
{
|
|
|
|
|
|
[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 = false)]
|
|
|
|
|
|
public long DeptId { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|