275 lines
17 KiB
XML
275 lines
17 KiB
XML
<?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="EEModel.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="Component_Reel_Info">
|
|
<Key>
|
|
<PropertyRef Name="idx" />
|
|
<PropertyRef Name="CUST" />
|
|
<PropertyRef Name="AMKSID" />
|
|
</Key>
|
|
<Property Name="idx" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
|
|
<Property Name="CUST" Type="varchar" MaxLength="6" Nullable="false" />
|
|
<Property Name="AMKSID" Type="varchar" MaxLength="12" Nullable="false" />
|
|
<Property Name="CUST_PARTNO" Type="varchar" MaxLength="30" Nullable="false" />
|
|
<Property Name="MFG_PARTNO" Type="varchar" MaxLength="30" Nullable="false" />
|
|
</EntityType>
|
|
<EntityType Name="Component_Reel_Result">
|
|
<Key>
|
|
<PropertyRef Name="idx" />
|
|
</Key>
|
|
<Property Name="idx" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
|
|
<Property Name="MC" Type="varchar" MaxLength="10" />
|
|
<Property Name="GUID" Type="uniqueidentifier" />
|
|
<Property Name="STIME" Type="datetime" Nullable="false" />
|
|
<Property Name="ETIME" Type="datetime" />
|
|
<Property Name="PTIME" Type="datetime" />
|
|
<Property Name="ATIME" Type="datetime" />
|
|
<Property Name="PDATE" Type="varchar" MaxLength="10" />
|
|
<Property Name="JTYPE" Type="varchar" MaxLength="10" />
|
|
<Property Name="JGUID" Type="varchar" MaxLength="50" />
|
|
<Property Name="SID" Type="varchar" MaxLength="20" />
|
|
<Property Name="SID0" Type="varchar" MaxLength="20" />
|
|
<Property Name="RID" Type="varchar" MaxLength="50" />
|
|
<Property Name="RID0" Type="varchar" MaxLength="50" />
|
|
<Property Name="RSN" Type="varchar" MaxLength="10" />
|
|
<Property Name="QR" Type="varchar" MaxLength="100" />
|
|
<Property Name="ZPL" Type="varchar" MaxLength="1000" />
|
|
<Property Name="POS" Type="varchar" MaxLength="10" />
|
|
<Property Name="LOC" Type="varchar" MaxLength="1" />
|
|
<Property Name="ANGLE" Type="float" />
|
|
<Property Name="QTY" Type="int" />
|
|
<Property Name="QTY0" Type="int" />
|
|
<Property Name="VLOT" Type="varchar" MaxLength="100" />
|
|
<Property Name="VNAME" Type="varchar" MaxLength="100" />
|
|
<Property Name="MFGDATE" Type="varchar" MaxLength="20" />
|
|
<Property Name="PRNATTACH" Type="bit" />
|
|
<Property Name="PRNVALID" Type="bit" />
|
|
<Property Name="REMARK" Type="varchar" MaxLength="200" />
|
|
<Property Name="OPT" Type="int" />
|
|
<Property Name="OPT_DATA" Type="int" />
|
|
<Property Name="PARTNO" Type="varchar" MaxLength="100" />
|
|
<Property Name="CUSTCODE" Type="varchar" MaxLength="20" />
|
|
<Property Name="wdate" Type="datetime" Nullable="false" />
|
|
<Property Name="BATCH" Type="varchar" MaxLength="100" />
|
|
<Property Name="qtymax" Type="int" />
|
|
</EntityType>
|
|
<EntityType Name="Component_Reel_SID_Convert">
|
|
<Key>
|
|
<PropertyRef Name="idx" />
|
|
</Key>
|
|
<Property Name="idx" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
|
|
<Property Name="MC" Type="varchar" MaxLength="20" />
|
|
<Property Name="Chk" Type="bit" />
|
|
<Property Name="SIDFrom" Type="varchar" MaxLength="20" />
|
|
<Property Name="SIDTo" Type="varchar" MaxLength="20" />
|
|
<Property Name="Remark" Type="varchar" MaxLength="100" />
|
|
<Property Name="wdate" Type="datetime" />
|
|
</EntityType>
|
|
<!--생성 중 오류 발생:
|
|
경고 6002: 테이블/뷰 'EE.dbo.vCustomerList'에 기본 키가 정의되지 않았습니다. 키가 유추되었고 읽기 전용 테이블/뷰로 정의되었습니다.-->
|
|
<EntityType Name="vCustomerList">
|
|
<Key>
|
|
<PropertyRef Name="CustCode" />
|
|
</Key>
|
|
<Property Name="CustCode" Type="varchar" MaxLength="10" Nullable="false" />
|
|
<Property Name="CustName" Type="varchar" MaxLength="100" />
|
|
</EntityType>
|
|
<EntityContainer Name="EEModelStoreContainer">
|
|
<EntitySet Name="Component_Reel_Info" EntityType="Self.Component_Reel_Info" Schema="dbo" store:Type="Tables" />
|
|
<EntitySet Name="Component_Reel_Result" EntityType="Self.Component_Reel_Result" Schema="dbo" store:Type="Tables" />
|
|
<EntitySet Name="Component_Reel_SID_Convert" EntityType="Self.Component_Reel_SID_Convert" Schema="dbo" store:Type="Tables" />
|
|
<EntitySet Name="vCustomerList" EntityType="Self.vCustomerList" store:Type="Views" store:Schema="dbo">
|
|
<DefiningQuery>SELECT
|
|
[vCustomerList].[CustCode] AS [CustCode],
|
|
[vCustomerList].[CustName] AS [CustName]
|
|
FROM [dbo].[vCustomerList] AS [vCustomerList]</DefiningQuery>
|
|
</EntitySet>
|
|
</EntityContainer>
|
|
</Schema></edmx:StorageModels>
|
|
<!-- CSDL content -->
|
|
<edmx:ConceptualModels>
|
|
<Schema Namespace="EEModel" 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="EEEntities" annotation:LazyLoadingEnabled="true">
|
|
<EntitySet Name="Component_Reel_Result" EntityType="EEModel.Component_Reel_Result" />
|
|
<EntitySet Name="Component_Reel_Info" EntityType="EEModel.Component_Reel_Info" />
|
|
<EntitySet Name="Component_Reel_SID_Convert" EntityType="EEModel.Component_Reel_SID_Convert" />
|
|
<EntitySet Name="vCustomerList" EntityType="EEModel.vCustomerList" />
|
|
</EntityContainer>
|
|
<EntityType Name="Component_Reel_Result">
|
|
<Key>
|
|
<PropertyRef Name="idx" />
|
|
</Key>
|
|
<Property Name="idx" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
|
|
<Property Name="STIME" Type="DateTime" Nullable="false" Precision="3" />
|
|
<Property Name="ETIME" Type="DateTime" Precision="3" />
|
|
<Property Name="PTIME" Type="DateTime" Precision="3" />
|
|
<Property Name="PDATE" Type="String" MaxLength="10" FixedLength="false" Unicode="false" />
|
|
<Property Name="JTYPE" Type="String" MaxLength="10" FixedLength="false" Unicode="false" />
|
|
<Property Name="JGUID" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
|
|
<Property Name="SID" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
|
|
<Property Name="SID0" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
|
|
<Property Name="RID" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
|
|
<Property Name="RID0" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
|
|
<Property Name="RSN" Type="String" MaxLength="10" FixedLength="false" Unicode="false" />
|
|
<Property Name="QR" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
|
|
<Property Name="ZPL" Type="String" MaxLength="1000" FixedLength="false" Unicode="false" />
|
|
<Property Name="POS" Type="String" MaxLength="10" FixedLength="false" Unicode="false" />
|
|
<Property Name="LOC" Type="String" MaxLength="1" FixedLength="false" Unicode="false" />
|
|
<Property Name="ANGLE" Type="Double" />
|
|
<Property Name="QTY" Type="Int32" />
|
|
<Property Name="QTY0" Type="Int32" />
|
|
<Property Name="VLOT" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
|
|
<Property Name="VNAME" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
|
|
<Property Name="MFGDATE" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
|
|
<Property Name="PRNATTACH" Type="Boolean" />
|
|
<Property Name="PRNVALID" Type="Boolean" />
|
|
<Property Name="REMARK" Type="String" MaxLength="200" FixedLength="false" Unicode="false" />
|
|
<Property Name="wdate" Type="DateTime" Nullable="false" Precision="3" />
|
|
<Property Name="MC" Type="String" MaxLength="10" FixedLength="false" Unicode="false" />
|
|
<Property Name="GUID" Type="Guid" />
|
|
<Property Name="ATIME" Type="DateTime" Precision="3" />
|
|
<Property Name="OPT" Type="Int32" />
|
|
<Property Name="OPT_DATA" Type="Int32" />
|
|
<Property Name="PARTNO" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
|
|
<Property Name="CUSTCODE" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
|
|
<Property Name="BATCH" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
|
|
<Property Name="qtymax" Type="Int32" />
|
|
</EntityType>
|
|
<EntityType Name="Component_Reel_Info">
|
|
<Key>
|
|
<PropertyRef Name="idx" />
|
|
<PropertyRef Name="CUST" />
|
|
<PropertyRef Name="AMKSID" />
|
|
</Key>
|
|
<Property Name="idx" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
|
|
<Property Name="CUST" Type="String" Nullable="false" MaxLength="6" FixedLength="false" Unicode="false" />
|
|
<Property Name="AMKSID" Type="String" Nullable="false" MaxLength="12" FixedLength="false" Unicode="false" />
|
|
<Property Name="CUST_PARTNO" Type="String" Nullable="false" MaxLength="30" FixedLength="false" Unicode="false" />
|
|
<Property Name="MFG_PARTNO" Type="String" Nullable="false" MaxLength="30" FixedLength="false" Unicode="false" />
|
|
</EntityType>
|
|
<EntityType Name="Component_Reel_SID_Convert">
|
|
<Key>
|
|
<PropertyRef Name="idx" />
|
|
</Key>
|
|
<Property Name="idx" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
|
|
<Property Name="Chk" Type="Boolean" />
|
|
<Property Name="SIDFrom" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
|
|
<Property Name="SIDTo" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
|
|
<Property Name="Remark" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
|
|
<Property Name="wdate" Type="DateTime" Precision="3" />
|
|
<Property Name="MC" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
|
|
</EntityType>
|
|
<EntityType Name="vCustomerList">
|
|
<Key>
|
|
<PropertyRef Name="CustCode" />
|
|
</Key>
|
|
<Property Name="CustCode" Type="String" Nullable="false" MaxLength="10" FixedLength="false" Unicode="false" />
|
|
<Property Name="CustName" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
|
|
</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="EEModelStoreContainer" CdmEntityContainer="EEEntities">
|
|
<EntitySetMapping Name="Component_Reel_Result">
|
|
<EntityTypeMapping TypeName="EEModel.Component_Reel_Result">
|
|
<MappingFragment StoreEntitySet="Component_Reel_Result">
|
|
<ScalarProperty Name="qtymax" ColumnName="qtymax" />
|
|
<ScalarProperty Name="BATCH" ColumnName="BATCH" />
|
|
<ScalarProperty Name="CUSTCODE" ColumnName="CUSTCODE" />
|
|
<ScalarProperty Name="PARTNO" ColumnName="PARTNO" />
|
|
<ScalarProperty Name="OPT_DATA" ColumnName="OPT_DATA" />
|
|
<ScalarProperty Name="OPT" ColumnName="OPT" />
|
|
<ScalarProperty Name="ATIME" ColumnName="ATIME" />
|
|
<ScalarProperty Name="GUID" ColumnName="GUID" />
|
|
<ScalarProperty Name="MC" ColumnName="MC" />
|
|
<ScalarProperty Name="wdate" ColumnName="wdate" />
|
|
<ScalarProperty Name="REMARK" ColumnName="REMARK" />
|
|
<ScalarProperty Name="PRNVALID" ColumnName="PRNVALID" />
|
|
<ScalarProperty Name="PRNATTACH" ColumnName="PRNATTACH" />
|
|
<ScalarProperty Name="MFGDATE" ColumnName="MFGDATE" />
|
|
<ScalarProperty Name="VNAME" ColumnName="VNAME" />
|
|
<ScalarProperty Name="VLOT" ColumnName="VLOT" />
|
|
<ScalarProperty Name="QTY0" ColumnName="QTY0" />
|
|
<ScalarProperty Name="QTY" ColumnName="QTY" />
|
|
<ScalarProperty Name="ANGLE" ColumnName="ANGLE" />
|
|
<ScalarProperty Name="LOC" ColumnName="LOC" />
|
|
<ScalarProperty Name="POS" ColumnName="POS" />
|
|
<ScalarProperty Name="ZPL" ColumnName="ZPL" />
|
|
<ScalarProperty Name="QR" ColumnName="QR" />
|
|
<ScalarProperty Name="RSN" ColumnName="RSN" />
|
|
<ScalarProperty Name="RID0" ColumnName="RID0" />
|
|
<ScalarProperty Name="RID" ColumnName="RID" />
|
|
<ScalarProperty Name="SID0" ColumnName="SID0" />
|
|
<ScalarProperty Name="SID" ColumnName="SID" />
|
|
<ScalarProperty Name="JGUID" ColumnName="JGUID" />
|
|
<ScalarProperty Name="JTYPE" ColumnName="JTYPE" />
|
|
<ScalarProperty Name="PDATE" ColumnName="PDATE" />
|
|
<ScalarProperty Name="PTIME" ColumnName="PTIME" />
|
|
<ScalarProperty Name="ETIME" ColumnName="ETIME" />
|
|
<ScalarProperty Name="STIME" ColumnName="STIME" />
|
|
<ScalarProperty Name="idx" ColumnName="idx" />
|
|
</MappingFragment>
|
|
</EntityTypeMapping>
|
|
</EntitySetMapping>
|
|
<EntitySetMapping Name="Component_Reel_Info">
|
|
<EntityTypeMapping TypeName="EEModel.Component_Reel_Info">
|
|
<MappingFragment StoreEntitySet="Component_Reel_Info">
|
|
<ScalarProperty Name="MFG_PARTNO" ColumnName="MFG_PARTNO" />
|
|
<ScalarProperty Name="CUST_PARTNO" ColumnName="CUST_PARTNO" />
|
|
<ScalarProperty Name="AMKSID" ColumnName="AMKSID" />
|
|
<ScalarProperty Name="CUST" ColumnName="CUST" />
|
|
<ScalarProperty Name="idx" ColumnName="idx" />
|
|
</MappingFragment>
|
|
</EntityTypeMapping>
|
|
</EntitySetMapping>
|
|
<EntitySetMapping Name="Component_Reel_SID_Convert">
|
|
<EntityTypeMapping TypeName="EEModel.Component_Reel_SID_Convert">
|
|
<MappingFragment StoreEntitySet="Component_Reel_SID_Convert">
|
|
<ScalarProperty Name="MC" ColumnName="MC" />
|
|
<ScalarProperty Name="wdate" ColumnName="wdate" />
|
|
<ScalarProperty Name="Remark" ColumnName="Remark" />
|
|
<ScalarProperty Name="SIDTo" ColumnName="SIDTo" />
|
|
<ScalarProperty Name="SIDFrom" ColumnName="SIDFrom" />
|
|
<ScalarProperty Name="Chk" ColumnName="Chk" />
|
|
<ScalarProperty Name="idx" ColumnName="idx" />
|
|
</MappingFragment>
|
|
</EntityTypeMapping>
|
|
</EntitySetMapping>
|
|
<EntitySetMapping Name="vCustomerList">
|
|
<EntityTypeMapping TypeName="EEModel.vCustomerList">
|
|
<MappingFragment StoreEntitySet="vCustomerList">
|
|
<ScalarProperty Name="CustName" ColumnName="CustName" />
|
|
<ScalarProperty Name="CustCode" ColumnName="CustCode" />
|
|
</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> |