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.
16 lines
518 B
C#
16 lines
518 B
C#
using SqlSugar;
|
|
using Volo.Abp.Domain.Entities;
|
|
|
|
namespace NPin.Framework.Upms.Domain.Entities;
|
|
|
|
[SugarTable("SysRelUserOrganization", "用户-组织机构 关系表")]
|
|
public class UserOrganizationEntity : 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 OrganizationId { get; set; }
|
|
} |