123456789101112131415161718192021222324252627282930313233343536 |
- using PTMIBase.Entity.Interfaces.Configuration.IRIS;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace PTMIBase.Entity.Structs
- {
- struct InterfaceInfo : IInterfaceInfo
- {
- public int InterfaceDr { get; set ; }
- public string InterfaceID { get; set ; }
- public string InterfaceName { get; set ; }
- public int HisHospitalDr { get; set ; }
- public int HospitalDr { get; set ; }
- public string HospitalName { get; set ; }
- public string HospitalNO { get; set ; }
- public string CenterURL { get; set ; }
- public string CenterURL2 { get; set ; }
- public string AreaCode { get; set ; }
- public string DllName { get; set ; }
- public string Version { get; set ; }
- public string HospitalLevel { get; set ; }
- public string UseFlag { get; set ; }
- public int SerialNO { get; set ; }
- public int InsuRegionDr { get; set ; }
- public int InsuRegionFlag { get; set ; }
- public int InsuCurrencyCataLogue { get; set ; }
- public string RegionConfig { get; set ; }
- public int SelfServiceFlag { get; set ; }
- public IBranchBusinessInfo MobilePay { get; set ; }
- public IBranchBusinessInfo PresCir { get; set ; }
- public string MdtrtareaAdmvs { get; set; }
- }
- }
|