품목검색기능ㅊ추가

This commit is contained in:
chi
2021-03-11 14:44:21 +09:00
parent 87da6dbe5f
commit b4746b6247
12 changed files with 660 additions and 77 deletions

View File

@@ -123,6 +123,29 @@
<Property Name="processs" Type="nvarchar" MaxLength="100" />
</EntityType>
<!--생성 중 오류 발생:
경고 6002: 테이블/뷰 'EE.dbo.vFindSID'에 기본 키가 정의되지 않았습니다. 키가 유추되었고 읽기 전용 테이블/뷰로 정의되었습니다.-->
<EntityType Name="vFindSID">
<Key>
<PropertyRef Name="idx" />
<PropertyRef Name="Location" />
<PropertyRef Name="manu" />
<PropertyRef Name="unit" />
<PropertyRef Name="supply" />
</Key>
<Property Name="idx" Type="int" Nullable="false" />
<Property Name="Location" Type="varchar" MaxLength="4" Nullable="false" />
<Property Name="date" Type="varchar" MaxLength="10" />
<Property Name="gcode" Type="varchar" MaxLength="10" />
<Property Name="name" Type="nvarchar" MaxLength="200" />
<Property Name="sid" Type="varchar" MaxLength="50" />
<Property Name="model" Type="nvarchar" MaxLength="200" />
<Property Name="manu" Type="nvarchar" MaxLength="100" Nullable="false" />
<Property Name="unit" Type="varchar" MaxLength="50" Nullable="false" />
<Property Name="supply" Type="nvarchar" MaxLength="200" Nullable="false" />
<Property Name="price" Type="decimal" Precision="18" Scale="0" />
<Property Name="remark" Type="nvarchar(max)" />
</EntityType>
<!--생성 중 오류 발생:
경고 6002: 테이블/뷰 'EE.dbo.vGroupUser'에 기본 키가 정의되지 않았습니다. 키가 유추되었고 읽기 전용 테이블/뷰로 정의되었습니다.-->
<EntityType Name="vGroupUser">
<Key>
@@ -157,6 +180,22 @@
<EntitySet Name="JobReport" EntityType="Self.JobReport" Schema="dbo" store:Type="Tables" />
<EntitySet Name="UserGroup" EntityType="Self.UserGroup" Schema="dbo" store:Type="Tables" />
<EntitySet Name="Users" EntityType="Self.Users" Schema="dbo" store:Type="Tables" />
<EntitySet Name="vFindSID" EntityType="Self.vFindSID" store:Type="Views" store:Schema="dbo">
<DefiningQuery>SELECT
[vFindSID].[idx] AS [idx],
[vFindSID].[Location] AS [Location],
[vFindSID].[date] AS [date],
[vFindSID].[gcode] AS [gcode],
[vFindSID].[name] AS [name],
[vFindSID].[sid] AS [sid],
[vFindSID].[model] AS [model],
[vFindSID].[manu] AS [manu],
[vFindSID].[unit] AS [unit],
[vFindSID].[supply] AS [supply],
[vFindSID].[price] AS [price],
[vFindSID].[remark] AS [remark]
FROM [dbo].[vFindSID] AS [vFindSID]</DefiningQuery>
</EntitySet>
<EntitySet Name="vGroupUser" EntityType="Self.vGroupUser" store:Type="Views" store:Schema="dbo">
<DefiningQuery>SELECT
[vGroupUser].[gcode] AS [gcode],
@@ -205,6 +244,7 @@
<EntitySet Name="vGroupUser" EntityType="EEModelMain.vGroupUser" />
<EntitySet Name="EETGW_JobReport_AutoInput" EntityType="EEModelMain.EETGW_JobReport_AutoInput" />
<EntitySet Name="JobReport" EntityType="EEModelMain.JobReport" />
<EntitySet Name="vFindSID" EntityType="EEModelMain.vFindSID" />
</EntityContainer>
<EntityType Name="EETGW_LoginInfo">
<Key>
@@ -339,6 +379,27 @@
<Property Name="tag" Type="String" MaxLength="255" FixedLength="false" Unicode="false" />
<Property Name="autoinput" Type="Boolean" />
</EntityType>
<EntityType Name="vFindSID">
<Key>
<PropertyRef Name="idx" />
<PropertyRef Name="Location" />
<PropertyRef Name="manu" />
<PropertyRef Name="unit" />
<PropertyRef Name="supply" />
</Key>
<Property Name="idx" Type="Int32" Nullable="false" />
<Property Name="Location" Type="String" Nullable="false" MaxLength="4" FixedLength="false" Unicode="false" />
<Property Name="date" Type="String" MaxLength="10" FixedLength="false" Unicode="false" />
<Property Name="gcode" Type="String" MaxLength="10" FixedLength="false" Unicode="false" />
<Property Name="name" Type="String" MaxLength="200" FixedLength="false" Unicode="true" />
<Property Name="sid" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
<Property Name="model" Type="String" MaxLength="200" FixedLength="false" Unicode="true" />
<Property Name="manu" Type="String" Nullable="false" MaxLength="100" FixedLength="false" Unicode="true" />
<Property Name="unit" Type="String" Nullable="false" MaxLength="50" FixedLength="false" Unicode="false" />
<Property Name="supply" Type="String" Nullable="false" MaxLength="200" FixedLength="false" Unicode="true" />
<Property Name="price" Type="Decimal" Precision="18" Scale="0" />
<Property Name="remark" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
</EntityType>
</Schema>
</edmx:ConceptualModels>
<!-- C-S mapping content -->
@@ -495,6 +556,24 @@
</MappingFragment>
</EntityTypeMapping>
</EntitySetMapping>
<EntitySetMapping Name="vFindSID">
<EntityTypeMapping TypeName="EEModelMain.vFindSID">
<MappingFragment StoreEntitySet="vFindSID">
<ScalarProperty Name="remark" ColumnName="remark" />
<ScalarProperty Name="price" ColumnName="price" />
<ScalarProperty Name="supply" ColumnName="supply" />
<ScalarProperty Name="unit" ColumnName="unit" />
<ScalarProperty Name="manu" ColumnName="manu" />
<ScalarProperty Name="model" ColumnName="model" />
<ScalarProperty Name="sid" ColumnName="sid" />
<ScalarProperty Name="name" ColumnName="name" />
<ScalarProperty Name="gcode" ColumnName="gcode" />
<ScalarProperty Name="date" ColumnName="date" />
<ScalarProperty Name="Location" ColumnName="Location" />
<ScalarProperty Name="idx" ColumnName="idx" />
</MappingFragment>
</EntityTypeMapping>
</EntitySetMapping>
</EntityContainerMapping>
</Mapping>
</edmx:Mappings>