ConsultationRecordsBak.cs 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. using MongoDB.Bson.Serialization.Attributes;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Flyinsono.DBCopy.Tool.Entities
  8. {
  9. internal class ConsultationRecordsBak
  10. {
  11. public string Id { get; private set; }
  12. public DateTime CreateTime { get; set; } = DateTime.MinValue;
  13. public DateTime UpdateTime { get; set; } = DateTime.MinValue;
  14. public bool IsDeleted { get; set; }
  15. public DoctorInfo DoctorInfo { get; set; }
  16. public DoctorInfo ExpertInfo { get; set; }
  17. public ConsultationPatientInfo PatientInfo { get; set; }
  18. public OrganizationInfo PrimaryHosptial { get; set; }
  19. public OrganizationInfo CentralHospital { get; set; }
  20. public DateTime AppointmentTime { get; set; }
  21. public string CheckPoint { get; set; }
  22. public ConsultationState State { get; set; }
  23. public string DeviceModel { get; set; }
  24. public string ScanDoctor { get; set; }
  25. public TerminalInfo TerminalInfo { get; set; }
  26. public string ConsultationNumber { get; set; }
  27. public string QueuingNumber { get; set; }
  28. public QualityType QualityType { get; set; }
  29. /// <summary>
  30. /// 随访记录状态
  31. /// </summary>
  32. public FollowUpVisitStatus FollowUpVisitStatus { get; set; }
  33. /// <summary>
  34. /// 是否需要随访
  35. /// </summary>
  36. public bool IsNeedFollowUpVisit { get; set; }
  37. /// <summary>
  38. /// 会诊评价满意度
  39. /// </summary>
  40. public EvaluateGrade EvaluateGrade { get; set; }
  41. /// <summary>
  42. /// image tokens
  43. /// </summary>
  44. public IList<string> ImageTokens { get; set; }
  45. /// <summary>
  46. /// video tokens
  47. /// </summary>
  48. public IList<VideoTokenInfo> VideoTokens { get; set; }
  49. /// <summary>
  50. /// 会诊上传图像数据
  51. /// </summary>
  52. public IList<GraphicInfo> GraphicData { get; set; }
  53. public IList<ReportConclusionInfo> ReportConclusionInfos { get; set; }
  54. /// <summary>
  55. /// 会诊前图像数据
  56. /// </summary>
  57. public IList<FileItem> PreFileItems { get; set; }
  58. }
  59. }