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.

51 lines
1.3 KiB

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
  1. using System;
  2. using System.Collections.Generic;
  3. using Volo.Abp.Domain.Entities.Auditing;
  4. using Volo.Abp.Domain.Entities;
  5. namespace Shentun.WebPeis.Models;
  6. public partial class AppointPatientRegister: AuditedEntity, IHasConcurrencyStamp
  7. {
  8. public AppointPatientRegister()
  9. {
  10. }
  11. public AppointPatientRegister(Guid id)
  12. {
  13. AppointPatientRegisterId = id;
  14. }
  15. public Guid AppointPatientRegisterId { get; set; }
  16. public Guid PersonId { get; set; }
  17. public Guid CustomerOrgId { get; set; }
  18. public Guid? CustomerOrgGroupId { get; set; }
  19. public Guid? MedicalPackageId { get; set; }
  20. public char CompleteFlag { get; set; }
  21. public DateTime MedicalStartDate { get; set; }
  22. public string? Remark { get; set; }
  23. public Guid MedicalCenterId { get; set; }
  24. public Guid CustomerOrgRegisterId { get; set; }
  25. public string? ConcurrencyStamp { get; set; }
  26. public char PregnantFlag { get; set; }
  27. public decimal? Height { get; set; }
  28. public decimal? Weight { get; set; }
  29. public virtual ICollection<Charge> Charges { get; set; } = new List<Charge>();
  30. public virtual ICollection<AppointRegisterAsbitem> AppointRegisterAsbitems { get; set; } = new List<AppointRegisterAsbitem>();
  31. public override object?[] GetKeys()
  32. {
  33. return [AppointPatientRegisterId];
  34. }
  35. }