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.
 
 
 

29 lines
605 B

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 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];
}
}