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

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using Volo.Abp.Domain.Entities.Auditing;
  7. using Volo.Abp.Domain.Entities;
  8. namespace Shentun.WebPeis.Models
  9. {
  10. /// <summary>
  11. /// 疾病风险级别对应的答案
  12. /// </summary>
  13. public class DiseaseRiskLevelAnswer : Entity, IHasConcurrencyStamp
  14. {
  15. public Guid DiseaseRiskLevelId { get; set; }
  16. public Guid QuestionAnswerId { get; set; }
  17. public string ConcurrencyStamp { get; set; }
  18. public override object?[] GetKeys()
  19. {
  20. return [DiseaseRiskLevelId, QuestionAnswerId];
  21. }
  22. }
  23. }