using System; using System.Collections.Generic; using Volo.Abp.Domain.Entities.Auditing; using Volo.Abp.Domain.Entities; namespace Shentun.WebPeis.Models; /// /// 适用性别设置,固定编码 /// public partial class ForSex : AuditedEntity, IHasConcurrencyStamp { public char ForSexId { get; set; } public string? ForSexName { get; set; } public string? SimpleCode { get; set; } public int DisplayOrder { get; set; } public string? ConcurrencyStamp { get; set; } public override object?[] GetKeys() { return [ForSexId]; } }