using System; using System.Collections.Generic; using Volo.Abp.Domain.Entities.Auditing; using Volo.Abp.Domain.Entities; namespace Shentun.WebPeis.Models; /// /// 民族设置 /// public partial class Nation : AuditedEntity, IHasConcurrencyStamp { /// /// 编号 /// public string NationId { get; set; } = null!; /// /// 名称 /// public string NationName { get; set; } = null!; public string? CountryCode { get; set; } /// /// 拼音简码 /// public string SimpleCode { get; set; } = null!; /// /// 显示顺序 /// public int DisplayOrder { get; set; } public string? ConcurrencyStamp { get; set; } public override object?[] GetKeys() { return [NationId]; } }