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 System.Text;
namespace Shentun.Peis.ChargeReports{ public class GetProjectFeesReportDto { /// <summary>
/// 应收总金额
/// </summary>
public decimal SumChargeMoney { get; set; }
/// <summary>
/// 折扣金额
/// </summary>
public decimal SumDiscountMoney { get; set; }
/// <summary>
/// 实收总金额
/// </summary>
public decimal SumReceivedChargeMoney { get; set; }
/// <summary>
/// 明细
/// </summary>
public List<GetProjectFeesReport_Detail> Details { get; set; } }
public class GetProjectFeesReport_Detail {
/// <summary>
/// 项目类别Id 前端不需要
/// </summary>
public Guid ItemTypeId { get; set; }
/// <summary>
/// 项目类别名称==科室
/// </summary>
public string ItemTypeName { get; set; }
/// <summary>
/// 组合项目Id 前端不需要
/// </summary>
public Guid AsbitemId { get; set; }
/// <summary>
/// 组合项目名称
/// </summary>
public string AsbitemName { get; set; }
/// <summary>
/// 应收金额
/// </summary>
public decimal ChargeMoney { get; set; }
/// <summary>
/// 折扣金额
/// </summary>
public decimal DiscountMoney { get; set; }
/// <summary>
/// 实收金额
/// </summary>
public decimal ReceivedChargeMoney { get; set; } }}
|