init
This commit is contained in:
13
DOAN.Model/System/Model/SysRoleDept.cs
Normal file
13
DOAN.Model/System/Model/SysRoleDept.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user