新增加roleDept实体

This commit is contained in:
不做码农 2021-12-26 18:28:26 +08:00
parent 2ce3a2a3db
commit ed44d9e52c

View File

@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Text;
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; }
}
}