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

  1. namespace Shentun.PeisReport.Api.Dto
  2. {
  3. public class DeleteReportInputDto
  4. {
  5. /// <summary>
  6. /// 预约编码
  7. /// </summary>
  8. public string examRequestCode { get; set; }
  9. /// <summary>
  10. /// 医疗机构代码
  11. /// </summary>
  12. public string yljgdm { get; set; }
  13. /// <summary>
  14. /// 医疗机构名称
  15. /// </summary>
  16. public string yljgmc { get; set; }
  17. }
  18. }