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.

25 lines
652 B

  1. namespace Shentun.PeisReport.Api.Dto
  2. {
  3. public class QueueRegisterByBarCodeNoDto : PublicResultDto
  4. {
  5. public QueueRegisterByBarCodeNoResultDataDto Data { get; set; } = new QueueRegisterByBarCodeNoResultDataDto();
  6. }
  7. public class QueueRegisterByBarCodeNoResultDataDto
  8. {
  9. /// <summary>
  10. /// 姓名
  11. /// </summary>
  12. public string patient_name { get; set; }
  13. /// <summary>
  14. /// 房间名称
  15. /// </summary>
  16. public string room_name { get; set; }
  17. /// <summary>
  18. /// 排队人数
  19. /// </summary>
  20. public int queue_count { get; set; }
  21. }
  22. }