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