Files
shgx_tz_mes_backend_sync/ZR.Model/System/SysRoleDept.cs

16 lines
416 B
C#
Raw Normal View History

2023-06-07 22:28:06 +08:00
using SqlSugar;
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; }
}
}