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.

59 lines
1.5 KiB

using System;
using System.Collections.Generic;
using System.Text;
namespace Shentun.Peis.CustomerReports
{
public class GetCustomerOrgFeeSettlementInAsbitemReportReduceDto
{
public List<GetCustomerOrgFeeSettlementInAsbitemReportReduce_Asbtiem> Asbtiems { get; set; }
}
public class GetCustomerOrgFeeSettlementInAsbitemReportReduce_Asbtiem
{
/// <summary>
/// 项目类别名称
/// </summary>
public string ItmeTypeName { get; set; }
/// <summary>
/// 组合项目名称
/// </summary>
public string AsbitemName { get; set; }
/// <summary>
/// 标准价格 reisterasbitem价格
/// </summary>
public string StandardPrice { get; set; }
/// <summary>
/// 应收、实收价格 实收金额/sum(数量)
/// </summary>
public string ChargePrice { get; set; }
/// <summary>
/// 人数
/// </summary>
public int PatientCount { get; set; }
/// <summary>
/// 标准金额 标准价*数量
/// </summary>
public string StandardAmount { get; set; }
/// <summary>
/// 折扣 (应收价格/标准价格)*100
/// </summary>
public string Discount { get; set; }
/// <summary>
/// 应收、实收金额 应收价格*数量 sum
/// </summary>
public string ChargeAmount { get; set; }
}
}