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.
|
|
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<Charge> Charges { get; set; } = new List<Charge>(); public virtual ICollection<AppointRegisterAsbitem> AppointRegisterAsbitems { get; set; } = new List<AppointRegisterAsbitem>(); public override object?[] GetKeys() { return [AppointPatientRegisterId]; }}
|