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.
41 lines
949 B
41 lines
949 B
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;
|
|
|
|
/// <summary>
|
|
/// 疾病风险
|
|
/// </summary>
|
|
public partial class DiseaseRisk : AuditedEntity, IHasConcurrencyStamp,IDisplayOrder
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
public Guid DiseaseRiskId { get; set; }
|
|
/// <summary>
|
|
/// 名称
|
|
/// </summary>
|
|
|
|
public string DiseaseRiskName { get; set; } = null!;
|
|
|
|
public string SimpleCode { get; set; } = null!;
|
|
|
|
public int DisplayOrder { get; set; }
|
|
|
|
|
|
|
|
public string? ConcurrencyStamp { get; set; }
|
|
/// <summary>
|
|
/// 包含的风险级别
|
|
/// </summary>
|
|
|
|
public virtual ICollection<DiseaseRiskLevel> DiseaseRiskLevels { get; set; } = new List<DiseaseRiskLevel>();
|
|
|
|
public override object?[] GetKeys()
|
|
{
|
|
return [DiseaseRiskId];
|
|
}
|
|
}
|