using System;
using System.Collections.Generic;
using Volo.Abp.Domain.Entities.Auditing;
using Volo.Abp.Domain.Entities;
using NPOI.OpenXmlFormats.Dml;
namespace Shentun.WebPeis.Models;
///
/// 疾病风险
///
public partial class DiseaseRisk : AuditedEntity, IHasConcurrencyStamp
{
///
/// 主键
///
public Guid DiseaseRiskId { get; set; }
///
/// 名称
///
public string DiseaseRiskName { get; set; } = null!;
public string SimpleCode { get; set; } = null!;
public int DisplayOrder { get; set; }
public string? ConcurrencyStamp { get; set; }
///
/// 包含的风险级别
///
public virtual ICollection DiseaseRiskLevels { get; set; } = new List();
public override object?[] GetKeys()
{
return [DiseaseRiskId];
}
}