shgx_tz_mom/ZR.Model/System/SysRolePost.cs

18 lines
332 B
C#
Raw Normal View History

2021-08-23 16:57:25 +08:00
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; }
}
}