Files
sy_hx_pbl_backend/DOAN.Model/System/Model/SysRoleDept.cs
2024-09-23 09:14:22 +08:00

14 lines
402 B
C#

namespace DOAN.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 = false)]
public long DeptId { get; set; }
}
}