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.

12 lines
390 B

  1. namespace Shentun.PeisReport.Api.Dto
  2. {
  3. public class PeisReportUrlByPatientRegisterIdDto : PublicResultDto
  4. {
  5. public PeisReportUrlByPatientRegisterIdResultDataDto Data { get; set; } = new PeisReportUrlByPatientRegisterIdResultDataDto();
  6. }
  7. public class PeisReportUrlByPatientRegisterIdResultDataDto
  8. {
  9. public string peis_report_url { get; set; }
  10. }
  11. }