You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
474 B
C#
17 lines
474 B
C#
using SqlSugar;
|
|
using Volo.Abp.Domain.Entities;
|
|
|
|
namespace NPin.Framework.Upms.Domain.Entities;
|
|
|
|
[SugarTable("RelUserPost","用户-岗位 关系表")]
|
|
public class UserPostEntity: Entity<Guid>
|
|
{
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|
public override Guid Id { get; protected set; }
|
|
|
|
[SugarColumn(ColumnDescription = "用户ID")]
|
|
public Guid UserId { get; set; }
|
|
|
|
[SugarColumn(ColumnDescription = "岗位ID")]
|
|
public Guid PostId { get; set; }
|
|
} |