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

  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations.Schema;
  4. using System.Text;
  5. namespace Shentun.Peis.InternalReports
  6. {
  7. public class GetDoctorPersonnelWorkLoadReportDto
  8. {
  9. /// <summary>
  10. /// 医生名称
  11. /// </summary>
  12. public string DoctorName { get; set; }
  13. /// <summary>
  14. /// 组合项目名称
  15. /// </summary>
  16. public string AsbitemName { get; set; }
  17. /// <summary>
  18. /// 检查人数
  19. /// </summary>
  20. public int CheckCount { get; set; }
  21. /// <summary>
  22. /// 标准均价
  23. /// </summary>
  24. public decimal AvgStandardPrice { get; set; }
  25. /// <summary>
  26. /// 实收均价
  27. /// </summary>
  28. public decimal AvgChargePrice { get; set; }
  29. /// <summary>
  30. /// 标准价格总金额
  31. /// </summary>
  32. public decimal SumStandardPrice { get; set; }
  33. /// <summary>
  34. /// 实收价格总金额
  35. /// </summary>
  36. public decimal SumChargePrice { get; set; }
  37. }
  38. }