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.

44 lines
1.1 KiB

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;
namespace Shentun.Peis.InternalReports
{
public class GetDoctorPersonnelWorkLoadReportDto
{
/// <summary>
/// 医生名称
/// </summary>
public string DoctorName { get; set; }
/// <summary>
/// 组合项目名称
/// </summary>
public string AsbitemName { get; set; }
/// <summary>
/// 检查人数
/// </summary>
public int CheckCount { get; set; }
/// <summary>
/// 标准均价
/// </summary>
public decimal AvgStandardPrice { get; set; }
/// <summary>
/// 实收均价
/// </summary>
public decimal AvgChargePrice { get; set; }
/// <summary>
/// 标准价格总金额
/// </summary>
public decimal SumStandardPrice { get; set; }
/// <summary>
/// 实收价格总金额
/// </summary>
public decimal SumChargePrice { get; set; }
}
}