2024-06-07 11:04:26 +08:00
|
|
|
|
namespace ZR.Model.System
|
2021-08-23 16:57:25 +08:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 用户岗位
|
|
|
|
|
|
/// </summary>
|
2023-06-07 22:28:06 +08:00
|
|
|
|
[SugarTable("sys_user_post", "用户与岗位关联表")]
|
2021-11-27 09:43:04 +08:00
|
|
|
|
[Tenant("0")]
|
2021-08-23 16:57:25 +08:00
|
|
|
|
public class SysUserPost
|
|
|
|
|
|
{
|
2023-06-07 22:28:06 +08:00
|
|
|
|
[SugarColumn(IsPrimaryKey = true, ExtendedAttribute = ProteryConstant.NOTNULL)]
|
2021-08-23 16:57:25 +08:00
|
|
|
|
public long UserId { get; set; }
|
2023-06-07 22:28:06 +08:00
|
|
|
|
[SugarColumn(IsPrimaryKey = true, ExtendedAttribute = ProteryConstant.NOTNULL)]
|
2021-08-23 16:57:25 +08:00
|
|
|
|
public long PostId { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|