ZrAdminNetCore/ZR.Model/System/SysUserPost.cs
2021-11-27 09:43:04 +08:00

20 lines
352 B
C#

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