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.

40 lines
884 B

1 year ago
1 year ago
1 year 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 CreateRoomDto
  9. {
  10. public string DisplayName { get; set; } = null!;
  11. /// <summary>
  12. /// 项目类别编号
  13. /// </summary>
  14. public Guid ItemTypeId { get; set; }
  15. /// <summary>
  16. /// 体检中心ID
  17. /// </summary>
  18. public Guid MedicalCenterId { get; set; }
  19. public char ForSexId { get; set; }
  20. /// <summary>
  21. /// 0-普通,1-抽血室
  22. /// </summary>
  23. public char RoomTypeFlag { get; set; }
  24. /// <summary>
  25. /// 候诊时间
  26. /// </summary>
  27. public decimal QueueTime { get; set; }
  28. public char IsActive { get; set; }
  29. }
  30. }