1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- using MongoDB.Bson.Serialization.Attributes;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Flyinsono.DBCopy.Tool.Entities
- {
- internal class ConsultationRecordsBak
- {
- public string Id { get; private set; }
- public DateTime CreateTime { get; set; } = DateTime.MinValue;
- public DateTime UpdateTime { get; set; } = DateTime.MinValue;
- public bool IsDeleted { get; set; }
- public DoctorInfo DoctorInfo { get; set; }
- public DoctorInfo ExpertInfo { get; set; }
- public ConsultationPatientInfo PatientInfo { get; set; }
- public OrganizationInfo PrimaryHosptial { get; set; }
- public OrganizationInfo CentralHospital { get; set; }
- public DateTime AppointmentTime { get; set; }
- public string CheckPoint { get; set; }
- public ConsultationState State { get; set; }
- public string DeviceModel { get; set; }
- public string ScanDoctor { get; set; }
- public TerminalInfo TerminalInfo { get; set; }
- public string ConsultationNumber { get; set; }
- public string QueuingNumber { get; set; }
- public QualityType QualityType { get; set; }
- /// <summary>
- /// 随访记录状态
- /// </summary>
- public FollowUpVisitStatus FollowUpVisitStatus { get; set; }
- /// <summary>
- /// 是否需要随访
- /// </summary>
- public bool IsNeedFollowUpVisit { get; set; }
- /// <summary>
- /// 会诊评价满意度
- /// </summary>
- public EvaluateGrade EvaluateGrade { get; set; }
- /// <summary>
- /// image tokens
- /// </summary>
- public IList<string> ImageTokens { get; set; }
- /// <summary>
- /// video tokens
- /// </summary>
- public IList<VideoTokenInfo> VideoTokens { get; set; }
- /// <summary>
- /// 会诊上传图像数据
- /// </summary>
- public IList<GraphicInfo> GraphicData { get; set; }
- public IList<ReportConclusionInfo> ReportConclusionInfos { get; set; }
- /// <summary>
- /// 会诊前图像数据
- /// </summary>
- public IList<FileItem> PreFileItems { get; set; }
- }
- }
|