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

20 lines
353 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using SqlSugar;
namespace ARW.Model.System
{
/// <summary>
/// 用户岗位
/// </summary>
[SugarTable("sys_user_post")]
[Tenant("0")]
public class SysUserPost
{
public long UserId { get; set; }
public long PostId { get; set; }
}
}