using System; using System.Collections.Generic; using System.Text; namespace Shentun.Peis.InternalReports { public class GetSumCheckDoctorWorkLoadReportDto { /// /// 总检医生名称 /// public string SumCheckDoctorName { get; set; } /// /// 总检数量 /// public int SumCheckCount { get; set; } /// /// 占百分比 /// public string Percentage { get; set; } } }