using System; using System.Collections.Generic; namespace Shentun.WebPeis.Models; /// /// 收费主档 /// public partial class Charge { /// /// 收据号 /// public Guid ChargeId { get; set; } /// /// 登记流水号 /// public Guid AppointPatientRegisterId { get; set; } public string? InvoiceNo { get; set; } public string? InvoiceOrgName { get; set; } public char ChargeFlag { get; set; } public Guid? SettleAccountId { get; set; } public DateTime? SettleTime { get; set; } public string? ConcurrencyStamp { get; set; } public DateTime CreationTime { get; set; } public Guid CreatorId { get; set; } public DateTime LastModificationTime { get; set; } public Guid LastModifierId { get; set; } public virtual AppointPatientRegister AppointPatientRegister { get; set; } = null!; public virtual ICollection ChargeAsbitems { get; set; } = new List(); public virtual ICollection ChargeBacks { get; set; } = new List(); }