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.

19 lines
523 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Shentun.Peis.CustomerReports
  5. {
  6. public class GetItemSpecificResultReportOrDiagnosisDto: GetItemSpecificResultReportStandardDto
  7. {
  8. /// <summary>
  9. /// 诊断名称 多个以,号隔开
  10. /// </summary>
  11. public string DiagnosisNames { get; set; }
  12. /// <summary>
  13. /// 总检综述(参照历次综述报告格式)
  14. /// </summary>
  15. public string SumSummarys { get; set; }
  16. }
  17. }