From ed44d9e52cf949813e71deeaee6ef75a500aeaf3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=8D=E5=81=9A=E7=A0=81=E5=86=9C?= <599854767@qq.com> Date: Sun, 26 Dec 2021 18:28:26 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=8A=A0roleDept=E5=AE=9E?= =?UTF-8?q?=E4=BD=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ZR.Model/System/SysRoleDept.cs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 ZR.Model/System/SysRoleDept.cs diff --git a/ZR.Model/System/SysRoleDept.cs b/ZR.Model/System/SysRoleDept.cs new file mode 100644 index 0000000..598fd37 --- /dev/null +++ b/ZR.Model/System/SysRoleDept.cs @@ -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; } + } +}