You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
878 B

1 year ago
1 year ago
1 year ago
1 year ago
  1. using System;
  2. using System.Collections.Generic;
  3. using Volo.Abp.Domain.Entities.Auditing;
  4. using Volo.Abp.Domain.Entities;
  5. namespace Shentun.WebPeis.Models;
  6. /// <summary>
  7. /// 民族设置
  8. /// </summary>
  9. public partial class Nation : AuditedEntity, IHasConcurrencyStamp
  10. {
  11. /// <summary>
  12. /// 编号
  13. /// </summary>
  14. public string NationId { get; set; } = null!;
  15. /// <summary>
  16. /// 名称
  17. /// </summary>
  18. public string NationName { get; set; } = null!;
  19. public string? CountryCode { get; set; }
  20. /// <summary>
  21. /// 拼音简码
  22. /// </summary>
  23. public string SimpleCode { get; set; } = null!;
  24. /// <summary>
  25. /// 显示顺序
  26. /// </summary>
  27. public int DisplayOrder { get; set; }
  28. public string? ConcurrencyStamp { get; set; }
  29. public override object?[] GetKeys()
  30. {
  31. return [NationId];
  32. }
  33. }