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.

50 lines
1.2 KiB

2 years ago
2 years ago
2 years ago
3 weeks ago
2 years ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations.Schema;
  4. using System.ComponentModel.DataAnnotations;
  5. using System.Text;
  6. namespace Shentun.Peis.Rooms
  7. {
  8. public class RoomDto : AuditedEntityDtoName
  9. {
  10. public string DisplayName { get; set; } = null!;
  11. /// <summary>
  12. /// 房间号
  13. /// </summary>
  14. public string RoomNo { get; set; }
  15. /// <summary>
  16. /// 项目类别编号
  17. /// </summary>
  18. public Guid ItemTypeId { get; set; }
  19. /// <summary>
  20. /// 体检中心ID
  21. /// </summary>
  22. public Guid MedicalCenterId { get; set; }
  23. public char ForSexId { get; set; }
  24. /// <summary>
  25. /// 0-普通,1-抽血室
  26. /// </summary>
  27. public char RoomTypeFlag { get; set; }
  28. /// <summary>
  29. /// 候诊时间
  30. /// </summary>
  31. public decimal QueueTime { get; set; }
  32. public char IsActive { get; set; }
  33. /// <summary>
  34. /// 分诊模式 0-默认模式(单房间) 1-多房间模式 2-多房间模式, 并且启用自动排队(人员签到等模式)
  35. /// </summary>
  36. public char QueueRoomFlag { get; set; }
  37. }
  38. }