不做码农 be515339fe ♻️代码重构
2023-09-02 17:55:34 +08:00

18 lines
487 B
C#

using SqlSugar;
namespace ZR.Model.System
{
/// <summary>
/// 用户岗位
/// </summary>
[SugarTable("sys_user_post", "用户与岗位关联表")]
[Tenant("0")]
public class SysUserPost
{
[SugarColumn(IsPrimaryKey = true, ExtendedAttribute = ProteryConstant.NOTNULL)]
public long UserId { get; set; }
[SugarColumn(IsPrimaryKey = true, ExtendedAttribute = ProteryConstant.NOTNULL)]
public long PostId { get; set; }
}
}