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