|
@@ -0,0 +1,480 @@
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
+<edmx:Edmx Version="3.0" xmlns:edmx="http://schemas.microsoft.com/ado/2009/11/edmx">
|
|
|
+ <!-- EF Runtime content -->
|
|
|
+ <edmx:Runtime>
|
|
|
+ <!-- SSDL content -->
|
|
|
+ <edmx:StorageModels>
|
|
|
+ <Schema Namespace="WebServiceDemoModel.Store" Provider="System.Data.SqlClient" ProviderManifestToken="2008" Alias="Self" xmlns:store="http://schemas.microsoft.com/ado/2007/12/edm/EntityStoreSchemaGenerator" xmlns:customannotation="http://schemas.microsoft.com/ado/2013/11/edm/customannotation" xmlns="http://schemas.microsoft.com/ado/2009/11/edm/ssdl">
|
|
|
+ <EntityType Name="LabMaster">
|
|
|
+ <Key>
|
|
|
+ <PropertyRef Name="Id" />
|
|
|
+ </Key>
|
|
|
+ <Property Name="Id" Type="bigint" StoreGeneratedPattern="Identity" Nullable="false" />
|
|
|
+ <Property Name="TestNo" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="PatientID" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="NotesForSpcm" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="Subject" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="Specimen" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="RequestedDateTime" Type="datetime" />
|
|
|
+ <Property Name="OrderingProvider" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="OrderingDept" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="PerformedBy" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="SampleDateTime" Type="datetime" />
|
|
|
+ <Property Name="SPCMCollector" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="ResultStatus" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="VisitId" Type="nvarchar" MaxLength="255" />
|
|
|
+ </EntityType>
|
|
|
+ <EntityType Name="LabResult">
|
|
|
+ <Key>
|
|
|
+ <PropertyRef Name="Id" />
|
|
|
+ </Key>
|
|
|
+ <Property Name="Id" Type="bigint" StoreGeneratedPattern="Identity" Nullable="false" />
|
|
|
+ <Property Name="ItemNo" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="ReportItemName" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="Result" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="Units" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="AbnormalFlag" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="PrintContext" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="TestNo" Type="nvarchar" MaxLength="255" />
|
|
|
+ </EntityType>
|
|
|
+ <EntityType Name="Order">
|
|
|
+ <Key>
|
|
|
+ <PropertyRef Name="Id" />
|
|
|
+ </Key>
|
|
|
+ <Property Name="Id" Type="bigint" StoreGeneratedPattern="Identity" Nullable="false" />
|
|
|
+ <Property Name="OrderId" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="OrderNo" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="OrderSubNo" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="RepeatIndicator" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="OrderClass" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="OrderText" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="Dosage" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="DosageUnits" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="DrugSpec" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="FirmId" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="Administration" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="Frequency" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="FreqCounter" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="FreqInterval" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="FreqIntervalUnit" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="FreqDetail" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="PerformSchedule" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="PerformResult" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="StartDateTime" Type="datetime" />
|
|
|
+ <Property Name="StopDateTime" Type="datetime" />
|
|
|
+ <Property Name="StartDoctor" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="StartNurse" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="OrderStatus" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="BillingAttr" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="DrugBillingAttr" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="ApplyNo" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="LastPerformDateTime" Type="datetime" />
|
|
|
+ <Property Name="PatientId" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="VisitId" Type="nvarchar" MaxLength="255" />
|
|
|
+ </EntityType>
|
|
|
+ <EntityType Name="OrderCheck">
|
|
|
+ <Key>
|
|
|
+ <PropertyRef Name="Id" />
|
|
|
+ </Key>
|
|
|
+ <Property Name="Id" Type="bigint" StoreGeneratedPattern="Identity" Nullable="false" />
|
|
|
+ <Property Name="SheetClass" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="OrderId" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="OrderNo" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="OrderSubNo" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="RepeatIndicator" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="OrderClass" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="OrderText" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="DosageUnits" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="Administration" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="Frequency" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="PerformSchedule" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="ScheduleDateTime" Type="datetime" />
|
|
|
+ <Property Name="StartDateTime" Type="datetime" />
|
|
|
+ <Property Name="StopDateTime" Type="datetime" />
|
|
|
+ <Property Name="OrderStatus" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="NursePerform" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="PerformDateTime" Type="datetime" />
|
|
|
+ <Property Name="NurseCheck" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="PatientId" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="VisitId" Type="nvarchar" MaxLength="255" />
|
|
|
+ </EntityType>
|
|
|
+ <EntityType Name="Patient">
|
|
|
+ <Key>
|
|
|
+ <PropertyRef Name="Id" />
|
|
|
+ </Key>
|
|
|
+ <Property Name="Id" Type="bigint" StoreGeneratedPattern="Identity" Nullable="false" />
|
|
|
+ <Property Name="VisitDate" Type="datetime" />
|
|
|
+ <Property Name="VisitNo" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="ClinicLabel" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="PVID" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="PatientId" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="Doctor" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="Sex" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="IndentityNo" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="TriageDate" Type="datetime" />
|
|
|
+ <Property Name="TriageBy" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="TriageTarget" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="TriageLevel" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="VisitID" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="PatientName" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="PatientBirthDate" Type="datetime" />
|
|
|
+ <Property Name="ChargeType" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="Identity" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="ContectPhone" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="ContectPerson" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="PatientAddress" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="GreenRoad" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="Diagnosis" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="Status" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="RegisterFrom" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="Nation" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="InDeptTime" Type="datetime" />
|
|
|
+ <Property Name="BedNo" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="BloodType" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="RhType" Type="nvarchar" MaxLength="255" />
|
|
|
+ </EntityType>
|
|
|
+ <EntityType Name="PatientVitalSign">
|
|
|
+ <Key>
|
|
|
+ <PropertyRef Name="Id" />
|
|
|
+ </Key>
|
|
|
+ <Property Name="Id" Type="bigint" StoreGeneratedPattern="Identity" Nullable="false" />
|
|
|
+ <Property Name="DataDT" Type="datetime" />
|
|
|
+ <Property Name="ItemName" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="ItemValue" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="ItemArtificial" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="PVID" Type="nvarchar" MaxLength="255" />
|
|
|
+ </EntityType>
|
|
|
+ <EntityContainer Name="WebServiceDemoModelStoreContainer">
|
|
|
+ <EntitySet Name="LabMaster" EntityType="Self.LabMaster" Schema="dbo" store:Type="Tables" />
|
|
|
+ <EntitySet Name="LabResult" EntityType="Self.LabResult" Schema="dbo" store:Type="Tables" />
|
|
|
+ <EntitySet Name="Order" EntityType="Self.Order" Schema="dbo" store:Type="Tables" />
|
|
|
+ <EntitySet Name="OrderCheck" EntityType="Self.OrderCheck" Schema="dbo" store:Type="Tables" />
|
|
|
+ <EntitySet Name="Patient" EntityType="Self.Patient" Schema="dbo" store:Type="Tables" />
|
|
|
+ <EntitySet Name="PatientVitalSign" EntityType="Self.PatientVitalSign" Schema="dbo" store:Type="Tables" />
|
|
|
+ </EntityContainer>
|
|
|
+ </Schema></edmx:StorageModels>
|
|
|
+ <!-- CSDL content -->
|
|
|
+ <edmx:ConceptualModels>
|
|
|
+ <Schema Namespace="WebServiceDemoModel" Alias="Self" annotation:UseStrongSpatialTypes="false" xmlns:annotation="http://schemas.microsoft.com/ado/2009/02/edm/annotation" xmlns:customannotation="http://schemas.microsoft.com/ado/2013/11/edm/customannotation" xmlns="http://schemas.microsoft.com/ado/2009/11/edm">
|
|
|
+ <EntityContainer Name="DB" annotation:LazyLoadingEnabled="true">
|
|
|
+ <EntitySet Name="LabMaster" EntityType="WebServiceDemoModel.LabMaster" />
|
|
|
+ <EntitySet Name="LabResult" EntityType="WebServiceDemoModel.LabResult" />
|
|
|
+ <EntitySet Name="Order" EntityType="WebServiceDemoModel.Order" />
|
|
|
+ <EntitySet Name="OrderCheck" EntityType="WebServiceDemoModel.OrderCheck" />
|
|
|
+ <EntitySet Name="Patient" EntityType="WebServiceDemoModel.Patient" />
|
|
|
+ <EntitySet Name="PatientVitalSign" EntityType="WebServiceDemoModel.PatientVitalSign" />
|
|
|
+ </EntityContainer>
|
|
|
+ <EntityType Name="LabMaster">
|
|
|
+ <Key>
|
|
|
+ <PropertyRef Name="Id" />
|
|
|
+ </Key>
|
|
|
+ <Property Name="Id" Type="Int64" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
|
|
|
+ <Property Name="TestNo" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="PatientID" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="NotesForSpcm" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="Subject" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="Specimen" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="RequestedDateTime" Type="DateTime" Precision="3" />
|
|
|
+ <Property Name="OrderingProvider" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="OrderingDept" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="PerformedBy" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="SampleDateTime" Type="DateTime" Precision="3" />
|
|
|
+ <Property Name="SPCMCollector" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="ResultStatus" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="VisitId" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ </EntityType>
|
|
|
+ <EntityType Name="LabResult">
|
|
|
+ <Key>
|
|
|
+ <PropertyRef Name="Id" />
|
|
|
+ </Key>
|
|
|
+ <Property Name="Id" Type="Int64" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
|
|
|
+ <Property Name="ItemNo" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="ReportItemName" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="Result" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="Units" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="AbnormalFlag" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="PrintContext" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="TestNo" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ </EntityType>
|
|
|
+ <EntityType Name="Order">
|
|
|
+ <Key>
|
|
|
+ <PropertyRef Name="Id" />
|
|
|
+ </Key>
|
|
|
+ <Property Name="Id" Type="Int64" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
|
|
|
+ <Property Name="OrderId" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="OrderNo" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="OrderSubNo" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="RepeatIndicator" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="OrderClass" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="OrderText" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="Dosage" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="DosageUnits" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="DrugSpec" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="FirmId" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="Administration" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="Frequency" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="FreqCounter" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="FreqInterval" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="FreqIntervalUnit" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="FreqDetail" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="PerformSchedule" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="PerformResult" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="StartDateTime" Type="DateTime" Precision="3" />
|
|
|
+ <Property Name="StopDateTime" Type="DateTime" Precision="3" />
|
|
|
+ <Property Name="StartDoctor" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="StartNurse" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="OrderStatus" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="BillingAttr" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="DrugBillingAttr" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="ApplyNo" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="LastPerformDateTime" Type="DateTime" Precision="3" />
|
|
|
+ <Property Name="PatientId" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="VisitId" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ </EntityType>
|
|
|
+ <EntityType Name="OrderCheck">
|
|
|
+ <Key>
|
|
|
+ <PropertyRef Name="Id" />
|
|
|
+ </Key>
|
|
|
+ <Property Name="Id" Type="Int64" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
|
|
|
+ <Property Name="SheetClass" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="OrderId" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="OrderNo" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="OrderSubNo" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="RepeatIndicator" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="OrderClass" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="OrderText" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="DosageUnits" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="Administration" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="Frequency" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="PerformSchedule" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="ScheduleDateTime" Type="DateTime" Precision="3" />
|
|
|
+ <Property Name="StartDateTime" Type="DateTime" Precision="3" />
|
|
|
+ <Property Name="StopDateTime" Type="DateTime" Precision="3" />
|
|
|
+ <Property Name="OrderStatus" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="NursePerform" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="PerformDateTime" Type="DateTime" Precision="3" />
|
|
|
+ <Property Name="NurseCheck" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="PatientId" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="VisitId" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ </EntityType>
|
|
|
+ <EntityType Name="Patient">
|
|
|
+ <Key>
|
|
|
+ <PropertyRef Name="Id" />
|
|
|
+ </Key>
|
|
|
+ <Property Name="Id" Type="Int64" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
|
|
|
+ <Property Name="VisitDate" Type="DateTime" Precision="3" />
|
|
|
+ <Property Name="VisitNo" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="ClinicLabel" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="PVID" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="PatientId" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="Doctor" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="Sex" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="IndentityNo" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="TriageDate" Type="DateTime" Precision="3" />
|
|
|
+ <Property Name="TriageBy" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="TriageTarget" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="TriageLevel" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="VisitID" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="PatientName" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="PatientBirthDate" Type="DateTime" Precision="3" />
|
|
|
+ <Property Name="ChargeType" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="Identity" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="ContectPhone" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="ContectPerson" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="PatientAddress" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="GreenRoad" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="Diagnosis" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="Status" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="RegisterFrom" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="Nation" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="InDeptTime" Type="DateTime" Precision="3" />
|
|
|
+ <Property Name="BedNo" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="BloodType" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="RhType" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ </EntityType>
|
|
|
+ <EntityType Name="PatientVitalSign">
|
|
|
+ <Key>
|
|
|
+ <PropertyRef Name="Id" />
|
|
|
+ </Key>
|
|
|
+ <Property Name="Id" Type="Int64" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
|
|
|
+ <Property Name="DataDT" Type="DateTime" Precision="3" />
|
|
|
+ <Property Name="ItemName" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="ItemValue" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="ItemArtificial" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="PVID" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ </EntityType>
|
|
|
+ </Schema>
|
|
|
+ </edmx:ConceptualModels>
|
|
|
+ <!-- C-S mapping content -->
|
|
|
+ <edmx:Mappings>
|
|
|
+ <Mapping Space="C-S" xmlns="http://schemas.microsoft.com/ado/2009/11/mapping/cs">
|
|
|
+ <EntityContainerMapping StorageEntityContainer="WebServiceDemoModelStoreContainer" CdmEntityContainer="DB">
|
|
|
+ <EntitySetMapping Name="LabMaster">
|
|
|
+ <EntityTypeMapping TypeName="WebServiceDemoModel.LabMaster">
|
|
|
+ <MappingFragment StoreEntitySet="LabMaster">
|
|
|
+ <ScalarProperty Name="VisitId" ColumnName="VisitId" />
|
|
|
+ <ScalarProperty Name="ResultStatus" ColumnName="ResultStatus" />
|
|
|
+ <ScalarProperty Name="SPCMCollector" ColumnName="SPCMCollector" />
|
|
|
+ <ScalarProperty Name="SampleDateTime" ColumnName="SampleDateTime" />
|
|
|
+ <ScalarProperty Name="PerformedBy" ColumnName="PerformedBy" />
|
|
|
+ <ScalarProperty Name="OrderingDept" ColumnName="OrderingDept" />
|
|
|
+ <ScalarProperty Name="OrderingProvider" ColumnName="OrderingProvider" />
|
|
|
+ <ScalarProperty Name="RequestedDateTime" ColumnName="RequestedDateTime" />
|
|
|
+ <ScalarProperty Name="Specimen" ColumnName="Specimen" />
|
|
|
+ <ScalarProperty Name="Subject" ColumnName="Subject" />
|
|
|
+ <ScalarProperty Name="NotesForSpcm" ColumnName="NotesForSpcm" />
|
|
|
+ <ScalarProperty Name="PatientID" ColumnName="PatientID" />
|
|
|
+ <ScalarProperty Name="TestNo" ColumnName="TestNo" />
|
|
|
+ <ScalarProperty Name="Id" ColumnName="Id" />
|
|
|
+ </MappingFragment>
|
|
|
+ </EntityTypeMapping>
|
|
|
+ </EntitySetMapping>
|
|
|
+ <EntitySetMapping Name="LabResult">
|
|
|
+ <EntityTypeMapping TypeName="WebServiceDemoModel.LabResult">
|
|
|
+ <MappingFragment StoreEntitySet="LabResult">
|
|
|
+ <ScalarProperty Name="TestNo" ColumnName="TestNo" />
|
|
|
+ <ScalarProperty Name="PrintContext" ColumnName="PrintContext" />
|
|
|
+ <ScalarProperty Name="AbnormalFlag" ColumnName="AbnormalFlag" />
|
|
|
+ <ScalarProperty Name="Units" ColumnName="Units" />
|
|
|
+ <ScalarProperty Name="Result" ColumnName="Result" />
|
|
|
+ <ScalarProperty Name="ReportItemName" ColumnName="ReportItemName" />
|
|
|
+ <ScalarProperty Name="ItemNo" ColumnName="ItemNo" />
|
|
|
+ <ScalarProperty Name="Id" ColumnName="Id" />
|
|
|
+ </MappingFragment>
|
|
|
+ </EntityTypeMapping>
|
|
|
+ </EntitySetMapping>
|
|
|
+ <EntitySetMapping Name="Order">
|
|
|
+ <EntityTypeMapping TypeName="WebServiceDemoModel.Order">
|
|
|
+ <MappingFragment StoreEntitySet="Order">
|
|
|
+ <ScalarProperty Name="VisitId" ColumnName="VisitId" />
|
|
|
+ <ScalarProperty Name="PatientId" ColumnName="PatientId" />
|
|
|
+ <ScalarProperty Name="LastPerformDateTime" ColumnName="LastPerformDateTime" />
|
|
|
+ <ScalarProperty Name="ApplyNo" ColumnName="ApplyNo" />
|
|
|
+ <ScalarProperty Name="DrugBillingAttr" ColumnName="DrugBillingAttr" />
|
|
|
+ <ScalarProperty Name="BillingAttr" ColumnName="BillingAttr" />
|
|
|
+ <ScalarProperty Name="OrderStatus" ColumnName="OrderStatus" />
|
|
|
+ <ScalarProperty Name="StartNurse" ColumnName="StartNurse" />
|
|
|
+ <ScalarProperty Name="StartDoctor" ColumnName="StartDoctor" />
|
|
|
+ <ScalarProperty Name="StopDateTime" ColumnName="StopDateTime" />
|
|
|
+ <ScalarProperty Name="StartDateTime" ColumnName="StartDateTime" />
|
|
|
+ <ScalarProperty Name="PerformResult" ColumnName="PerformResult" />
|
|
|
+ <ScalarProperty Name="PerformSchedule" ColumnName="PerformSchedule" />
|
|
|
+ <ScalarProperty Name="FreqDetail" ColumnName="FreqDetail" />
|
|
|
+ <ScalarProperty Name="FreqIntervalUnit" ColumnName="FreqIntervalUnit" />
|
|
|
+ <ScalarProperty Name="FreqInterval" ColumnName="FreqInterval" />
|
|
|
+ <ScalarProperty Name="FreqCounter" ColumnName="FreqCounter" />
|
|
|
+ <ScalarProperty Name="Frequency" ColumnName="Frequency" />
|
|
|
+ <ScalarProperty Name="Administration" ColumnName="Administration" />
|
|
|
+ <ScalarProperty Name="FirmId" ColumnName="FirmId" />
|
|
|
+ <ScalarProperty Name="DrugSpec" ColumnName="DrugSpec" />
|
|
|
+ <ScalarProperty Name="DosageUnits" ColumnName="DosageUnits" />
|
|
|
+ <ScalarProperty Name="Dosage" ColumnName="Dosage" />
|
|
|
+ <ScalarProperty Name="OrderText" ColumnName="OrderText" />
|
|
|
+ <ScalarProperty Name="OrderClass" ColumnName="OrderClass" />
|
|
|
+ <ScalarProperty Name="RepeatIndicator" ColumnName="RepeatIndicator" />
|
|
|
+ <ScalarProperty Name="OrderSubNo" ColumnName="OrderSubNo" />
|
|
|
+ <ScalarProperty Name="OrderNo" ColumnName="OrderNo" />
|
|
|
+ <ScalarProperty Name="OrderId" ColumnName="OrderId" />
|
|
|
+ <ScalarProperty Name="Id" ColumnName="Id" />
|
|
|
+ </MappingFragment>
|
|
|
+ </EntityTypeMapping>
|
|
|
+ </EntitySetMapping>
|
|
|
+ <EntitySetMapping Name="OrderCheck">
|
|
|
+ <EntityTypeMapping TypeName="WebServiceDemoModel.OrderCheck">
|
|
|
+ <MappingFragment StoreEntitySet="OrderCheck">
|
|
|
+ <ScalarProperty Name="VisitId" ColumnName="VisitId" />
|
|
|
+ <ScalarProperty Name="PatientId" ColumnName="PatientId" />
|
|
|
+ <ScalarProperty Name="NurseCheck" ColumnName="NurseCheck" />
|
|
|
+ <ScalarProperty Name="PerformDateTime" ColumnName="PerformDateTime" />
|
|
|
+ <ScalarProperty Name="NursePerform" ColumnName="NursePerform" />
|
|
|
+ <ScalarProperty Name="OrderStatus" ColumnName="OrderStatus" />
|
|
|
+ <ScalarProperty Name="StopDateTime" ColumnName="StopDateTime" />
|
|
|
+ <ScalarProperty Name="StartDateTime" ColumnName="StartDateTime" />
|
|
|
+ <ScalarProperty Name="ScheduleDateTime" ColumnName="ScheduleDateTime" />
|
|
|
+ <ScalarProperty Name="PerformSchedule" ColumnName="PerformSchedule" />
|
|
|
+ <ScalarProperty Name="Frequency" ColumnName="Frequency" />
|
|
|
+ <ScalarProperty Name="Administration" ColumnName="Administration" />
|
|
|
+ <ScalarProperty Name="DosageUnits" ColumnName="DosageUnits" />
|
|
|
+ <ScalarProperty Name="OrderText" ColumnName="OrderText" />
|
|
|
+ <ScalarProperty Name="OrderClass" ColumnName="OrderClass" />
|
|
|
+ <ScalarProperty Name="RepeatIndicator" ColumnName="RepeatIndicator" />
|
|
|
+ <ScalarProperty Name="OrderSubNo" ColumnName="OrderSubNo" />
|
|
|
+ <ScalarProperty Name="OrderNo" ColumnName="OrderNo" />
|
|
|
+ <ScalarProperty Name="OrderId" ColumnName="OrderId" />
|
|
|
+ <ScalarProperty Name="SheetClass" ColumnName="SheetClass" />
|
|
|
+ <ScalarProperty Name="Id" ColumnName="Id" />
|
|
|
+ </MappingFragment>
|
|
|
+ </EntityTypeMapping>
|
|
|
+ </EntitySetMapping>
|
|
|
+ <EntitySetMapping Name="Patient">
|
|
|
+ <EntityTypeMapping TypeName="WebServiceDemoModel.Patient">
|
|
|
+ <MappingFragment StoreEntitySet="Patient">
|
|
|
+ <ScalarProperty Name="RhType" ColumnName="RhType" />
|
|
|
+ <ScalarProperty Name="BloodType" ColumnName="BloodType" />
|
|
|
+ <ScalarProperty Name="BedNo" ColumnName="BedNo" />
|
|
|
+ <ScalarProperty Name="InDeptTime" ColumnName="InDeptTime" />
|
|
|
+ <ScalarProperty Name="Nation" ColumnName="Nation" />
|
|
|
+ <ScalarProperty Name="RegisterFrom" ColumnName="RegisterFrom" />
|
|
|
+ <ScalarProperty Name="Status" ColumnName="Status" />
|
|
|
+ <ScalarProperty Name="Diagnosis" ColumnName="Diagnosis" />
|
|
|
+ <ScalarProperty Name="GreenRoad" ColumnName="GreenRoad" />
|
|
|
+ <ScalarProperty Name="PatientAddress" ColumnName="PatientAddress" />
|
|
|
+ <ScalarProperty Name="ContectPerson" ColumnName="ContectPerson" />
|
|
|
+ <ScalarProperty Name="ContectPhone" ColumnName="ContectPhone" />
|
|
|
+ <ScalarProperty Name="Identity" ColumnName="Identity" />
|
|
|
+ <ScalarProperty Name="ChargeType" ColumnName="ChargeType" />
|
|
|
+ <ScalarProperty Name="PatientBirthDate" ColumnName="PatientBirthDate" />
|
|
|
+ <ScalarProperty Name="PatientName" ColumnName="PatientName" />
|
|
|
+ <ScalarProperty Name="VisitID" ColumnName="VisitID" />
|
|
|
+ <ScalarProperty Name="TriageLevel" ColumnName="TriageLevel" />
|
|
|
+ <ScalarProperty Name="TriageTarget" ColumnName="TriageTarget" />
|
|
|
+ <ScalarProperty Name="TriageBy" ColumnName="TriageBy" />
|
|
|
+ <ScalarProperty Name="TriageDate" ColumnName="TriageDate" />
|
|
|
+ <ScalarProperty Name="IndentityNo" ColumnName="IndentityNo" />
|
|
|
+ <ScalarProperty Name="Sex" ColumnName="Sex" />
|
|
|
+ <ScalarProperty Name="Doctor" ColumnName="Doctor" />
|
|
|
+ <ScalarProperty Name="PatientId" ColumnName="PatientId" />
|
|
|
+ <ScalarProperty Name="PVID" ColumnName="PVID" />
|
|
|
+ <ScalarProperty Name="ClinicLabel" ColumnName="ClinicLabel" />
|
|
|
+ <ScalarProperty Name="VisitNo" ColumnName="VisitNo" />
|
|
|
+ <ScalarProperty Name="VisitDate" ColumnName="VisitDate" />
|
|
|
+ <ScalarProperty Name="Id" ColumnName="Id" />
|
|
|
+ </MappingFragment>
|
|
|
+ </EntityTypeMapping>
|
|
|
+ </EntitySetMapping>
|
|
|
+ <EntitySetMapping Name="PatientVitalSign">
|
|
|
+ <EntityTypeMapping TypeName="WebServiceDemoModel.PatientVitalSign">
|
|
|
+ <MappingFragment StoreEntitySet="PatientVitalSign">
|
|
|
+ <ScalarProperty Name="PVID" ColumnName="PVID" />
|
|
|
+ <ScalarProperty Name="ItemArtificial" ColumnName="ItemArtificial" />
|
|
|
+ <ScalarProperty Name="ItemValue" ColumnName="ItemValue" />
|
|
|
+ <ScalarProperty Name="ItemName" ColumnName="ItemName" />
|
|
|
+ <ScalarProperty Name="DataDT" ColumnName="DataDT" />
|
|
|
+ <ScalarProperty Name="Id" ColumnName="Id" />
|
|
|
+ </MappingFragment>
|
|
|
+ </EntityTypeMapping>
|
|
|
+ </EntitySetMapping>
|
|
|
+ </EntityContainerMapping>
|
|
|
+ </Mapping>
|
|
|
+ </edmx:Mappings>
|
|
|
+ </edmx:Runtime>
|
|
|
+ <!-- EF Designer content (DO NOT EDIT MANUALLY BELOW HERE) -->
|
|
|
+ <Designer xmlns="http://schemas.microsoft.com/ado/2009/11/edmx">
|
|
|
+ <Connection>
|
|
|
+ <DesignerInfoPropertySet>
|
|
|
+ <DesignerProperty Name="MetadataArtifactProcessing" Value="EmbedInOutputAssembly" />
|
|
|
+ </DesignerInfoPropertySet>
|
|
|
+ </Connection>
|
|
|
+ <Options>
|
|
|
+ <DesignerInfoPropertySet>
|
|
|
+ <DesignerProperty Name="ValidateOnBuild" Value="true" />
|
|
|
+ <DesignerProperty Name="EnablePluralization" Value="false" />
|
|
|
+ <DesignerProperty Name="IncludeForeignKeysInModel" Value="true" />
|
|
|
+ <DesignerProperty Name="UseLegacyProvider" Value="false" />
|
|
|
+ <DesignerProperty Name="CodeGenerationStrategy" Value="无" />
|
|
|
+ </DesignerInfoPropertySet>
|
|
|
+ </Options>
|
|
|
+ <!-- Diagram content (shape and connector positions) -->
|
|
|
+ <Diagrams></Diagrams>
|
|
|
+ </Designer>
|
|
|
+</edmx:Edmx>
|