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;
namespace Shentun.WebPeis.Models;
/// <summary>
/// 收费主档
/// </summary>
public partial class Charge{ /// <summary>
/// 收据号
/// </summary>
public Guid ChargeId { get; set; }
/// <summary>
/// 登记流水号
/// </summary>
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<ChargeAsbitem> ChargeAsbitems { get; set; } = new List<ChargeAsbitem>();
public virtual ICollection<ChargeBack> ChargeBacks { get; set; } = new List<ChargeBack>();}
|