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.

22 lines
459 B

namespace Shentun.PeisReport.Api.Dto
{
public class DeleteReportInputDto
{
/// <summary>
/// 预约编码
/// </summary>
public string examRequestCode { get; set; }
/// <summary>
/// 医疗机构代码
/// </summary>
public string yljgdm { get; set; }
/// <summary>
/// 医疗机构名称
/// </summary>
public string yljgmc { get; set; }
}
}