레이아우슾로토 적용

This commit is contained in:
chi
2021-05-22 14:04:34 +09:00
parent 478896089f
commit e1dce272bb
24 changed files with 1991 additions and 775 deletions

View File

@@ -100,6 +100,7 @@
<Property Name="rowspan" Type="int" Nullable="false" />
<Property Name="colspan" Type="int" Nullable="false" />
<Property Name="project" Type="int" />
<Property Name="reserve" Type="varchar" MaxLength="255" />
<Property Name="remark" Type="varchar" MaxLength="255" />
<Property Name="wuid" Type="varchar" MaxLength="20" Nullable="false" />
<Property Name="wdate" Type="smalldatetime" Nullable="false" />
@@ -375,6 +376,25 @@
<Property Name="processs" Type="nvarchar" MaxLength="100" />
</EntityType>
<!--생성 중 오류 발생:
경고 6002: 테이블/뷰 'EE.dbo.vEETGW_Project_LayoutList'에 기본 키가 정의되지 않았습니다. 키가 유추되었고 읽기 전용 테이블/뷰로 정의되었습니다.-->
<EntityType Name="vEETGW_Project_LayoutList">
<Key>
<PropertyRef Name="idx" />
<PropertyRef Name="gcode" />
</Key>
<Property Name="idx" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
<Property Name="gcode" Type="varchar" MaxLength="10" Nullable="false" />
<Property Name="pdate" Type="varchar" MaxLength="10" />
<Property Name="edate" Type="varchar" MaxLength="50" />
<Property Name="ddate" Type="varchar" MaxLength="50" />
<Property Name="sdate" Type="varchar" MaxLength="50" />
<Property Name="name" Type="nvarchar" MaxLength="255" />
<Property Name="userManager" Type="varchar" MaxLength="50" />
<Property Name="memo" Type="nvarchar" MaxLength="255" />
<Property Name="isdel" Type="bit" />
<Property Name="status" Type="varchar" MaxLength="50" />
</EntityType>
<!--생성 중 오류 발생:
경고 6002: 테이블/뷰 'EE.dbo.vGroupUser'에 기본 키가 정의되지 않았습니다. 키가 유추되었고 읽기 전용 테이블/뷰로 정의되었습니다.-->
<EntityType Name="vGroupUser">
<Key>
@@ -478,6 +498,21 @@
<EntitySet Name="Purchase" EntityType="Self.Purchase" 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="vEETGW_Project_LayoutList" EntityType="Self.vEETGW_Project_LayoutList" store:Type="Views" store:Schema="dbo">
<DefiningQuery>SELECT
[vEETGW_Project_LayoutList].[idx] AS [idx],
[vEETGW_Project_LayoutList].[gcode] AS [gcode],
[vEETGW_Project_LayoutList].[pdate] AS [pdate],
[vEETGW_Project_LayoutList].[edate] AS [edate],
[vEETGW_Project_LayoutList].[ddate] AS [ddate],
[vEETGW_Project_LayoutList].[sdate] AS [sdate],
[vEETGW_Project_LayoutList].[name] AS [name],
[vEETGW_Project_LayoutList].[userManager] AS [userManager],
[vEETGW_Project_LayoutList].[memo] AS [memo],
[vEETGW_Project_LayoutList].[isdel] AS [isdel],
[vEETGW_Project_LayoutList].[status] AS [status]
FROM [dbo].[vEETGW_Project_LayoutList] AS [vEETGW_Project_LayoutList]</DefiningQuery>
</EntitySet>
<EntitySet Name="vGroupUser" EntityType="Self.vGroupUser" store:Type="Views" store:Schema="dbo">
<DefiningQuery>SELECT
[vGroupUser].[gcode] AS [gcode],
@@ -654,8 +689,9 @@
<EntitySet Name="vJobReportForUser" EntityType="EEModel.vJobReportForUser" />
<EntitySet Name="EETGW_ProjectsSchedule" EntityType="EEModel.EETGW_ProjectsSchedule" />
<EntitySet Name="Auth" EntityType="EEModel.Auth" />
<EntitySet Name="EETGW_Project_Layout" EntityType="EEModel.EETGW_Project_Layout" />
<EntitySet Name="Projects" EntityType="EEModel.Projects" />
<EntitySet Name="vEETGW_Project_LayoutList" EntityType="EEModel.vEETGW_Project_LayoutList" />
<EntitySet Name="EETGW_Project_Layout" EntityType="EEModel.EETGW_Project_Layout" />
</EntityContainer>
<EntityType Name="HolidayLIst">
<Key>
@@ -952,22 +988,6 @@
<Property Name="savecost" Type="Int32" />
<Property Name="scheapp" Type="Int32" />
</EntityType>
<EntityType Name="EETGW_Project_Layout">
<Key>
<PropertyRef Name="idx" />
</Key>
<Property Name="idx" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
<Property Name="gcode" Type="String" Nullable="false" MaxLength="20" FixedLength="false" Unicode="false" />
<Property Name="no" Type="Int32" Nullable="false" />
<Property Name="row" Type="Int32" Nullable="false" />
<Property Name="col" Type="Int32" Nullable="false" />
<Property Name="rowspan" Type="Int32" Nullable="false" />
<Property Name="colspan" Type="Int32" Nullable="false" />
<Property Name="project" Type="Int32" />
<Property Name="remark" Type="String" MaxLength="255" FixedLength="false" Unicode="false" />
<Property Name="wuid" Type="String" Nullable="false" MaxLength="20" FixedLength="false" Unicode="false" />
<Property Name="wdate" Type="DateTime" Nullable="false" Precision="0" />
</EntityType>
<EntityType Name="Projects">
<Key>
<PropertyRef Name="idx" />
@@ -1024,6 +1044,40 @@
<Property Name="EB_ConstNew" Type="Double" />
<Property Name="EB_BoardName" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
</EntityType>
<EntityType Name="vEETGW_Project_LayoutList">
<Key>
<PropertyRef Name="idx" />
<PropertyRef Name="gcode" />
</Key>
<Property Name="idx" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
<Property Name="gcode" Type="String" Nullable="false" MaxLength="10" FixedLength="false" Unicode="false" />
<Property Name="pdate" Type="String" MaxLength="10" FixedLength="false" Unicode="false" />
<Property Name="edate" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
<Property Name="ddate" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
<Property Name="sdate" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
<Property Name="name" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
<Property Name="userManager" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
<Property Name="memo" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
<Property Name="isdel" Type="Boolean" />
<Property Name="status" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
</EntityType>
<EntityType Name="EETGW_Project_Layout">
<Key>
<PropertyRef Name="idx" />
</Key>
<Property Name="idx" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
<Property Name="gcode" Type="String" Nullable="false" MaxLength="20" FixedLength="false" Unicode="false" />
<Property Name="no" Type="Int32" Nullable="false" />
<Property Name="row" Type="Int32" Nullable="false" />
<Property Name="col" Type="Int32" Nullable="false" />
<Property Name="rowspan" Type="Int32" Nullable="false" />
<Property Name="colspan" Type="Int32" Nullable="false" />
<Property Name="project" Type="Int32" />
<Property Name="reserve" Type="String" MaxLength="255" FixedLength="false" Unicode="false" />
<Property Name="remark" Type="String" MaxLength="255" FixedLength="false" Unicode="false" />
<Property Name="wuid" Type="String" Nullable="false" MaxLength="20" FixedLength="false" Unicode="false" />
<Property Name="wdate" Type="DateTime" Nullable="false" Precision="0" />
</EntityType>
</Schema>
</edmx:ConceptualModels>
<!-- C-S mapping content -->
@@ -1419,23 +1473,6 @@
</MappingFragment>
</EntityTypeMapping>
</EntitySetMapping>
<EntitySetMapping Name="EETGW_Project_Layout">
<EntityTypeMapping TypeName="EEModel.EETGW_Project_Layout">
<MappingFragment StoreEntitySet="EETGW_Project_Layout">
<ScalarProperty Name="wdate" ColumnName="wdate" />
<ScalarProperty Name="wuid" ColumnName="wuid" />
<ScalarProperty Name="remark" ColumnName="remark" />
<ScalarProperty Name="project" ColumnName="project" />
<ScalarProperty Name="colspan" ColumnName="colspan" />
<ScalarProperty Name="rowspan" ColumnName="rowspan" />
<ScalarProperty Name="col" ColumnName="col" />
<ScalarProperty Name="row" ColumnName="row" />
<ScalarProperty Name="no" ColumnName="no" />
<ScalarProperty Name="gcode" ColumnName="gcode" />
<ScalarProperty Name="idx" ColumnName="idx" />
</MappingFragment>
</EntityTypeMapping>
</EntitySetMapping>
<EntitySetMapping Name="Projects">
<EntityTypeMapping TypeName="EEModel.Projects">
<MappingFragment StoreEntitySet="Projects">
@@ -1493,6 +1530,41 @@
</MappingFragment>
</EntityTypeMapping>
</EntitySetMapping>
<EntitySetMapping Name="vEETGW_Project_LayoutList">
<EntityTypeMapping TypeName="EEModel.vEETGW_Project_LayoutList">
<MappingFragment StoreEntitySet="vEETGW_Project_LayoutList">
<ScalarProperty Name="status" ColumnName="status" />
<ScalarProperty Name="isdel" ColumnName="isdel" />
<ScalarProperty Name="memo" ColumnName="memo" />
<ScalarProperty Name="userManager" ColumnName="userManager" />
<ScalarProperty Name="name" ColumnName="name" />
<ScalarProperty Name="sdate" ColumnName="sdate" />
<ScalarProperty Name="ddate" ColumnName="ddate" />
<ScalarProperty Name="edate" ColumnName="edate" />
<ScalarProperty Name="pdate" ColumnName="pdate" />
<ScalarProperty Name="gcode" ColumnName="gcode" />
<ScalarProperty Name="idx" ColumnName="idx" />
</MappingFragment>
</EntityTypeMapping>
</EntitySetMapping>
<EntitySetMapping Name="EETGW_Project_Layout">
<EntityTypeMapping TypeName="EEModel.EETGW_Project_Layout">
<MappingFragment StoreEntitySet="EETGW_Project_Layout">
<ScalarProperty Name="wdate" ColumnName="wdate" />
<ScalarProperty Name="wuid" ColumnName="wuid" />
<ScalarProperty Name="remark" ColumnName="remark" />
<ScalarProperty Name="reserve" ColumnName="reserve" />
<ScalarProperty Name="project" ColumnName="project" />
<ScalarProperty Name="colspan" ColumnName="colspan" />
<ScalarProperty Name="rowspan" ColumnName="rowspan" />
<ScalarProperty Name="col" ColumnName="col" />
<ScalarProperty Name="row" ColumnName="row" />
<ScalarProperty Name="no" ColumnName="no" />
<ScalarProperty Name="gcode" ColumnName="gcode" />
<ScalarProperty Name="idx" ColumnName="idx" />
</MappingFragment>
</EntityTypeMapping>
</EntitySetMapping>
</EntityContainerMapping>
</Mapping>
</edmx:Mappings>