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.

46 lines
1.1 KiB

  1. using System;
  2. using System.Collections.Generic;
  3. namespace Shentun.WebPeis.Models;
  4. /// <summary>
  5. /// 收费主档
  6. /// </summary>
  7. public partial class Charge
  8. {
  9. /// <summary>
  10. /// 收据号
  11. /// </summary>
  12. public Guid ChargeId { get; set; }
  13. /// <summary>
  14. /// 登记流水号
  15. /// </summary>
  16. public Guid AppointPatientRegisterId { get; set; }
  17. public string? InvoiceNo { get; set; }
  18. public string? InvoiceOrgName { get; set; }
  19. public char ChargeFlag { get; set; }
  20. public Guid? SettleAccountId { get; set; }
  21. public DateTime? SettleTime { get; set; }
  22. public string? ConcurrencyStamp { get; set; }
  23. public DateTime CreationTime { get; set; }
  24. public Guid CreatorId { get; set; }
  25. public DateTime LastModificationTime { get; set; }
  26. public Guid LastModifierId { get; set; }
  27. public virtual AppointPatientRegister AppointPatientRegister { get; set; } = null!;
  28. public virtual ICollection<ChargeAsbitem> ChargeAsbitems { get; set; } = new List<ChargeAsbitem>();
  29. public virtual ICollection<ChargeBack> ChargeBacks { get; set; } = new List<ChargeBack>();
  30. }