123456789101112131415161718192021222324 |
- namespace Vinno.vCloud.Common.FIS.Remedicals
- {
- /// <summary>
- /// 本地与云端的病人的匹配信息
- /// </summary>
- public class PatientPairInfo
- {
- /// <summary>
- /// Patient Id in USMachine
- /// </summary>
- public string PatientIdInUSMachine { get; set; }
- /// <summary>
- /// Patient Id in vCloud Server
- /// </summary>
- public string PatientIdInServer { get; set; }
- public PatientPairInfo(string patientIdInUSMachine, string patientIdInServer)
- {
- PatientIdInUSMachine = patientIdInUSMachine;
- PatientIdInServer = patientIdInServer;
- }
- }
- }
|