using System; using System.Collections.Generic; using Volo.Abp.Domain.Entities.Auditing; using Volo.Abp.Domain.Entities; namespace Shentun.WebPeis.Models; public partial class AppointPatientRegister: AuditedEntity, IHasConcurrencyStamp { public AppointPatientRegister() { } public AppointPatientRegister(Guid id) { AppointPatientRegisterId = id; } public Guid AppointPatientRegisterId { get; set; } public Guid PersonId { get; set; } public Guid CustomerOrgId { get; set; } public Guid? CustomerOrgGroupId { get; set; } public Guid? MedicalPackageId { get; set; } public char CompleteFlag { get; set; } public DateTime MedicalStartDate { get; set; } public string? Remark { get; set; } public Guid MedicalCenterId { get; set; } public Guid CustomerOrgRegisterId { get; set; } public string? ConcurrencyStamp { get; set; } public char PregnantFlag { get; set; } public decimal? Height { get; set; } public decimal? Weight { get; set; } public virtual ICollection Charges { get; set; } = new List(); public virtual ICollection AppointRegisterAsbitems { get; set; } = new List(); public override object?[] GetKeys() { return [AppointPatientRegisterId]; } }