11 lines
224 B
C#
11 lines
224 B
C#
namespace ZR.Model.System
|
|
{
|
|
[SqlSugar.SugarTable("sys_role_dept")]
|
|
[SqlSugar.Tenant(0)]
|
|
public class SysRoleDept
|
|
{
|
|
public long RoleId { get; set; }
|
|
public long DeptId { get; set; }
|
|
}
|
|
}
|