ChatRoomForGpt/ARW-net/ARW.Model/System/SysRolePost.cs
2023-04-04 18:15:13 +08:00

19 lines
351 B
C#

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