2024-05-16 13:30:30 +08:00
|
|
|
|
using SqlSugar;
|
|
|
|
|
|
|
2024-07-01 16:04:10 +08:00
|
|
|
|
namespace DOAN.Model.System
|
2024-05-16 13:30:30 +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 = true)]
|
|
|
|
|
|
public long DeptId { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|