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
19 lines
523 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Shentun.Peis.CustomerReports
|
|
{
|
|
public class GetItemSpecificResultReportOrDiagnosisDto: GetItemSpecificResultReportStandardDto
|
|
{
|
|
/// <summary>
|
|
/// 诊断名称 多个以,号隔开
|
|
/// </summary>
|
|
public string DiagnosisNames { get; set; }
|
|
|
|
/// <summary>
|
|
/// 总检综述(参照历次综述报告格式)
|
|
/// </summary>
|
|
public string SumSummarys { get; set; }
|
|
}
|
|
}
|