ZrAdminNetCore/ZR.Model/System/SysRolePost.cs
2021-08-23 16:57:25 +08:00

18 lines
332 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using SqlSugar;
namespace ZR.Model.System
{
/// <summary>
/// 角色部门
/// </summary>
[SugarTable("sys_role_post")]
public class SysRolePost
{
public long RoleId { get; set; }
public long DeptId { get; set; }
}
}