16 lines
472 B
C#
Raw Normal View History

2025-10-21 13:38:23 +08:00
namespace RIZO.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; }
}
}