14 lines
400 B
C#
14 lines
400 B
C#
|
|
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 = false)]
|
|||
|
|
public long DeptId { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|