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.
24 lines
545 B
24 lines
545 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Shentun.Peis.InternalReports
|
|
{
|
|
public class GetSumCheckDoctorWorkLoadReportDto
|
|
{
|
|
/// <summary>
|
|
/// 总检医生名称
|
|
/// </summary>
|
|
public string SumCheckDoctorName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 总检数量
|
|
/// </summary>
|
|
public int SumCheckCount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 占百分比
|
|
/// </summary>
|
|
public string Percentage { get; set; }
|
|
}
|
|
}
|