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.
27 lines
675 B
27 lines
675 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Volo.Abp.Domain.Entities.Auditing;
|
|
using Volo.Abp.Domain.Entities;
|
|
|
|
namespace Shentun.WebPeis.Models
|
|
{
|
|
/// <summary>
|
|
/// 疾病风险级别对应的答案
|
|
/// </summary>
|
|
public class DiseaseRiskLevelAnswer : Entity, IHasConcurrencyStamp
|
|
{
|
|
public Guid DiseaseRiskLevelId { get; set; }
|
|
|
|
public Guid QuestionAnswerId { get; set; }
|
|
|
|
public string ConcurrencyStamp { get; set; }
|
|
|
|
public override object?[] GetKeys()
|
|
{
|
|
return [DiseaseRiskLevelId, QuestionAnswerId];
|
|
}
|
|
}
|
|
}
|