shgx_tz_mom/ZR.Model/System/SysRoleDept.cs

14 lines
399 B
C#
Raw Normal View History

2024-06-07 11:04:26 +08:00
namespace ZR.Model.System
2021-12-26 18:28:26 +08:00
{
2023-06-07 22:28:06 +08:00
[SugarTable("sys_role_dept", "角色部门")]
[Tenant(0)]
2021-12-26 18:28:26 +08:00
public class SysRoleDept
{
2023-06-07 22:28:06 +08:00
[SugarColumn(ExtendedAttribute = ProteryConstant.NOTNULL, IsPrimaryKey = true)]
2021-12-26 18:28:26 +08:00
public long RoleId { get; set; }
2023-06-07 22:28:06 +08:00
[SugarColumn(ExtendedAttribute = ProteryConstant.NOTNULL, IsPrimaryKey = true)]
2021-12-26 18:28:26 +08:00
public long DeptId { get; set; }
}
}