Files
shgx_tz_mes_backend_sync/server/ZR.Model/System/SysRoleDept.cs
xiaowei.song 127c428a9e 油漆
2024-06-06 13:19:24 +08:00

16 lines
416 B
C#

using SqlSugar;
namespace ZR.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 = true)]
public long DeptId { get; set; }
}
}