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.
24 lines
769 B
C#
24 lines
769 B
C#
using SqlSugar;
|
|
using Volo.Abp.Auditing;
|
|
using Volo.Abp.Domain.Entities;
|
|
|
|
namespace NPin.Framework.Upms.Domain.Entities;
|
|
|
|
[SugarTable("SysUserMetadata", "用户元数据表")]
|
|
public class UserMetaEntity : Entity<Guid>, IAuditedObject
|
|
{
|
|
[SugarColumn(IsPrimaryKey = true)] public override Guid Id { get; protected set; }
|
|
|
|
public Guid UserId;
|
|
|
|
[SugarColumn(ColumnDescription = "元数据 键")]
|
|
public string Key { get; set; }
|
|
|
|
[SugarColumn(ColumnDescription = "元数据 值")]
|
|
public string Value { get; set; }
|
|
|
|
public DateTime CreationTime { get; set; } = DateTime.Now;
|
|
public Guid? CreatorId { get; set; }
|
|
public DateTime? LastModificationTime { get; set; }
|
|
public Guid? LastModifierId { get; set; }
|
|
} |