神祖牌位管理模組,掛單模組前端URL添加HTTP_HOST
This commit is contained in:
@@ -254,6 +254,74 @@
|
||||
<Property Name="word" Type="nvarchar(max)" />
|
||||
<Property Name="systems" Type="int" />
|
||||
</EntityType>
|
||||
<EntityType Name="AncestralTabletArea">
|
||||
<Key>
|
||||
<PropertyRef Name="AreaId" />
|
||||
</Key>
|
||||
<Property Name="AreaId" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
|
||||
<Property Name="AreaName" Type="nvarchar" MaxLength="10" Nullable="false" />
|
||||
<Property Name="AreaCode" Type="nvarchar" MaxLength="20" Nullable="false" />
|
||||
<Property Name="ParentAreaId" Type="int" />
|
||||
<Property Name="AreaType" Type="nvarchar" MaxLength="10" />
|
||||
<Property Name="Price" Type="int" />
|
||||
<Property Name="SortOrder" Type="int" />
|
||||
<Property Name="IsDisabled" Type="bit" Nullable="false" />
|
||||
<Property Name="Description" Type="nvarchar" MaxLength="200" />
|
||||
</EntityType>
|
||||
<EntityType Name="AncestralTabletPosition">
|
||||
<Key>
|
||||
<PropertyRef Name="PositionId" />
|
||||
</Key>
|
||||
<Property Name="PositionId" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
|
||||
<Property Name="AreaId" Type="int" Nullable="false" />
|
||||
<Property Name="PositionCode" Type="nvarchar" MaxLength="20" Nullable="false" />
|
||||
<Property Name="PositionName" Type="nvarchar" MaxLength="50" />
|
||||
<Property Name="Price" Type="int" />
|
||||
<Property Name="StatusCode" Type="nvarchar" MaxLength="20" />
|
||||
<Property Name="Description" Type="nvarchar" MaxLength="200" />
|
||||
<Property Name="RowNo" Type="int" />
|
||||
<Property Name="ColumnNo" Type="int" />
|
||||
</EntityType>
|
||||
<EntityType Name="AncestralTabletPositionRecord">
|
||||
<Key>
|
||||
<PropertyRef Name="RecordId" />
|
||||
</Key>
|
||||
<Property Name="RecordId" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
|
||||
<Property Name="RegistrantCode" Type="nvarchar" MaxLength="20" Nullable="false" />
|
||||
<Property Name="NPTitle" Type="nvarchar" MaxLength="30" />
|
||||
<Property Name="NPStandDate" Type="date" Nullable="false" />
|
||||
<Property Name="NPYangShang" Type="nvarchar" MaxLength="20" />
|
||||
<Property Name="WPContent" Type="nvarchar" MaxLength="1000" />
|
||||
<Property Name="CreatedAt" Type="datetime" Nullable="false" />
|
||||
<Property Name="UpdatedAt" Type="datetime" />
|
||||
</EntityType>
|
||||
<EntityType Name="AncestralTabletRegistrant">
|
||||
<Key>
|
||||
<PropertyRef Name="RegistrantCode" />
|
||||
</Key>
|
||||
<Property Name="RegistrantCode" Type="nvarchar" MaxLength="20" Nullable="false" />
|
||||
<Property Name="Name" Type="nvarchar" MaxLength="50" Nullable="false" />
|
||||
<Property Name="Phone" Type="nvarchar" MaxLength="50" />
|
||||
<Property Name="Address" Type="nvarchar" MaxLength="60" />
|
||||
<Property Name="RegisterDate" Type="date" Nullable="false" />
|
||||
<Property Name="Price" Type="int" />
|
||||
<Property Name="PositionId" Type="int" />
|
||||
<Property Name="StartDate" Type="date" Nullable="false" />
|
||||
<Property Name="EndDate" Type="date" />
|
||||
<Property Name="IsLongTerm" Type="bit" Nullable="false" />
|
||||
<Property Name="IsActive" Type="bit" Nullable="false" />
|
||||
<Property Name="CreatedAt" Type="datetime" Nullable="false" />
|
||||
<Property Name="UpdatedAt" Type="datetime" />
|
||||
<Property Name="IsEnd" Type="bit" Nullable="false" />
|
||||
</EntityType>
|
||||
<EntityType Name="AncestralTabletStatus">
|
||||
<Key>
|
||||
<PropertyRef Name="StatusCode" />
|
||||
</Key>
|
||||
<Property Name="StatusCode" Type="nvarchar" MaxLength="20" Nullable="false" />
|
||||
<Property Name="StatusName" Type="nvarchar" MaxLength="20" Nullable="false" />
|
||||
<Property Name="StatusType" Type="nvarchar" MaxLength="20" Nullable="false" />
|
||||
</EntityType>
|
||||
<EntityType Name="appellation">
|
||||
<Key>
|
||||
<PropertyRef Name="num" />
|
||||
@@ -454,6 +522,7 @@
|
||||
<Property Name="CheckInAt" Type="date" />
|
||||
<Property Name="CheckOutAt" Type="date" />
|
||||
<Property Name="StatusCode" Type="nvarchar" MaxLength="20" Nullable="false" />
|
||||
<Property Name="OrderUuid" Type="uniqueidentifier" />
|
||||
</EntityType>
|
||||
<EntityType Name="GuadanTimeSetting">
|
||||
<Key>
|
||||
@@ -910,6 +979,18 @@
|
||||
<Property Name="balance_act_item" Type="int" />
|
||||
<Property Name="balance_pro_order_detail" Type="int" />
|
||||
</EntityType>
|
||||
<Association Name="FK__Ancestral__Regis__5A1A5A11">
|
||||
<End Role="AncestralTabletRegistrant" Type="Self.AncestralTabletRegistrant" Multiplicity="1" />
|
||||
<End Role="AncestralTabletPositionRecord" Type="Self.AncestralTabletPositionRecord" Multiplicity="*" />
|
||||
<ReferentialConstraint>
|
||||
<Principal Role="AncestralTabletRegistrant">
|
||||
<PropertyRef Name="RegistrantCode" />
|
||||
</Principal>
|
||||
<Dependent Role="AncestralTabletPositionRecord">
|
||||
<PropertyRef Name="RegistrantCode" />
|
||||
</Dependent>
|
||||
</ReferentialConstraint>
|
||||
</Association>
|
||||
<Association Name="FK_accounting_accounting_kind">
|
||||
<End Role="accounting_kind" Type="Self.accounting_kind" Multiplicity="0..1" />
|
||||
<End Role="accounting" Type="Self.accounting" Multiplicity="*" />
|
||||
@@ -1178,6 +1259,18 @@
|
||||
</Dependent>
|
||||
</ReferentialConstraint>
|
||||
</Association>
|
||||
<Association Name="FK_AncestralTabletArea_Parent">
|
||||
<End Role="AncestralTabletArea" Type="Self.AncestralTabletArea" Multiplicity="0..1" />
|
||||
<End Role="AncestralTabletArea1" Type="Self.AncestralTabletArea" Multiplicity="*" />
|
||||
<ReferentialConstraint>
|
||||
<Principal Role="AncestralTabletArea">
|
||||
<PropertyRef Name="AreaId" />
|
||||
</Principal>
|
||||
<Dependent Role="AncestralTabletArea1">
|
||||
<PropertyRef Name="ParentAreaId" />
|
||||
</Dependent>
|
||||
</ReferentialConstraint>
|
||||
</Association>
|
||||
<Association Name="FK_bed_kind_detail_bed_kind">
|
||||
<End Role="bed_kind" Type="Self.bed_kind" Multiplicity="0..1" />
|
||||
<End Role="bed_kind_detail" Type="Self.bed_kind_detail" Multiplicity="*" />
|
||||
@@ -1372,6 +1465,18 @@
|
||||
</Dependent>
|
||||
</ReferentialConstraint>
|
||||
</Association>
|
||||
<Association Name="FK_GuaDanOrderGuest_Order">
|
||||
<End Role="GuaDanOrder" Type="Self.GuaDanOrder" Multiplicity="0..1" />
|
||||
<End Role="GuaDanOrderGuest" Type="Self.GuaDanOrderGuest" Multiplicity="*" />
|
||||
<ReferentialConstraint>
|
||||
<Principal Role="GuaDanOrder">
|
||||
<PropertyRef Name="Uuid" />
|
||||
</Principal>
|
||||
<Dependent Role="GuaDanOrderGuest">
|
||||
<PropertyRef Name="OrderUuid" />
|
||||
</Dependent>
|
||||
</ReferentialConstraint>
|
||||
</Association>
|
||||
<Association Name="FK_GuaDanOrderGuest_RoomUuid">
|
||||
<End Role="Room" Type="Self.Room" Multiplicity="0..1" />
|
||||
<End Role="GuaDanOrderGuest" Type="Self.GuaDanOrderGuest" Multiplicity="*" />
|
||||
@@ -1506,6 +1611,30 @@
|
||||
</Dependent>
|
||||
</ReferentialConstraint>
|
||||
</Association>
|
||||
<Association Name="FK_Position_Area">
|
||||
<End Role="AncestralTabletArea" Type="Self.AncestralTabletArea" Multiplicity="1" />
|
||||
<End Role="AncestralTabletPosition" Type="Self.AncestralTabletPosition" Multiplicity="*" />
|
||||
<ReferentialConstraint>
|
||||
<Principal Role="AncestralTabletArea">
|
||||
<PropertyRef Name="AreaId" />
|
||||
</Principal>
|
||||
<Dependent Role="AncestralTabletPosition">
|
||||
<PropertyRef Name="AreaId" />
|
||||
</Dependent>
|
||||
</ReferentialConstraint>
|
||||
</Association>
|
||||
<Association Name="FK_Position_Status">
|
||||
<End Role="AncestralTabletStatus" Type="Self.AncestralTabletStatus" Multiplicity="0..1" />
|
||||
<End Role="AncestralTabletPosition" Type="Self.AncestralTabletPosition" Multiplicity="*" />
|
||||
<ReferentialConstraint>
|
||||
<Principal Role="AncestralTabletStatus">
|
||||
<PropertyRef Name="StatusCode" />
|
||||
</Principal>
|
||||
<Dependent Role="AncestralTabletPosition">
|
||||
<PropertyRef Name="StatusCode" />
|
||||
</Dependent>
|
||||
</ReferentialConstraint>
|
||||
</Association>
|
||||
<Association Name="FK_pro_order_activity">
|
||||
<End Role="activity" Type="Self.activity" Multiplicity="0..1" />
|
||||
<End Role="pro_order" Type="Self.pro_order" Multiplicity="*" />
|
||||
@@ -1718,6 +1847,18 @@
|
||||
</Dependent>
|
||||
</ReferentialConstraint>
|
||||
</Association>
|
||||
<Association Name="FK_Registrant_Position">
|
||||
<End Role="AncestralTabletPosition" Type="Self.AncestralTabletPosition" Multiplicity="0..1" />
|
||||
<End Role="AncestralTabletRegistrant" Type="Self.AncestralTabletRegistrant" Multiplicity="*" />
|
||||
<ReferentialConstraint>
|
||||
<Principal Role="AncestralTabletPosition">
|
||||
<PropertyRef Name="PositionId" />
|
||||
</Principal>
|
||||
<Dependent Role="AncestralTabletRegistrant">
|
||||
<PropertyRef Name="PositionId" />
|
||||
</Dependent>
|
||||
</ReferentialConstraint>
|
||||
</Association>
|
||||
<Association Name="FK_Room_Region">
|
||||
<End Role="Region" Type="Self.Region" Multiplicity="1" />
|
||||
<End Role="Room" Type="Self.Room" Multiplicity="*" />
|
||||
@@ -1966,6 +2107,11 @@
|
||||
<EntitySet Name="admin" EntityType="Self.admin" Schema="dbo" store:Type="Tables" />
|
||||
<EntitySet Name="admin_group" EntityType="Self.admin_group" Schema="dbo" store:Type="Tables" />
|
||||
<EntitySet Name="admin_log" EntityType="Self.admin_log" Schema="dbo" store:Type="Tables" />
|
||||
<EntitySet Name="AncestralTabletArea" EntityType="Self.AncestralTabletArea" Schema="dbo" store:Type="Tables" />
|
||||
<EntitySet Name="AncestralTabletPosition" EntityType="Self.AncestralTabletPosition" Schema="dbo" store:Type="Tables" />
|
||||
<EntitySet Name="AncestralTabletPositionRecord" EntityType="Self.AncestralTabletPositionRecord" Schema="dbo" store:Type="Tables" />
|
||||
<EntitySet Name="AncestralTabletRegistrant" EntityType="Self.AncestralTabletRegistrant" Schema="dbo" store:Type="Tables" />
|
||||
<EntitySet Name="AncestralTabletStatus" EntityType="Self.AncestralTabletStatus" Schema="dbo" store:Type="Tables" />
|
||||
<EntitySet Name="appellation" EntityType="Self.appellation" Schema="dbo" store:Type="Tables" />
|
||||
<EntitySet Name="bed_kind" EntityType="Self.bed_kind" Schema="dbo" store:Type="Tables" />
|
||||
<EntitySet Name="bed_kind_detail" EntityType="Self.bed_kind_detail" Schema="dbo" store:Type="Tables" />
|
||||
@@ -2010,6 +2156,10 @@
|
||||
<EntitySet Name="supplier" EntityType="Self.supplier" Schema="dbo" store:Type="Tables" />
|
||||
<EntitySet Name="supplier_kind" EntityType="Self.supplier_kind" Schema="dbo" store:Type="Tables" />
|
||||
<EntitySet Name="transfer_register" EntityType="Self.transfer_register" Schema="dbo" store:Type="Tables" />
|
||||
<AssociationSet Name="FK__Ancestral__Regis__5A1A5A11" Association="Self.FK__Ancestral__Regis__5A1A5A11">
|
||||
<End Role="AncestralTabletRegistrant" EntitySet="AncestralTabletRegistrant" />
|
||||
<End Role="AncestralTabletPositionRecord" EntitySet="AncestralTabletPositionRecord" />
|
||||
</AssociationSet>
|
||||
<AssociationSet Name="FK_accounting_accounting_kind" Association="Self.FK_accounting_accounting_kind">
|
||||
<End Role="accounting_kind" EntitySet="accounting_kind" />
|
||||
<End Role="accounting" EntitySet="accounting" />
|
||||
@@ -2094,6 +2244,10 @@
|
||||
<End Role="admin_group" EntitySet="admin_group" />
|
||||
<End Role="admin" EntitySet="admin" />
|
||||
</AssociationSet>
|
||||
<AssociationSet Name="FK_AncestralTabletArea_Parent" Association="Self.FK_AncestralTabletArea_Parent">
|
||||
<End Role="AncestralTabletArea" EntitySet="AncestralTabletArea" />
|
||||
<End Role="AncestralTabletArea1" EntitySet="AncestralTabletArea" />
|
||||
</AssociationSet>
|
||||
<AssociationSet Name="FK_bed_kind_detail_bed_kind" Association="Self.FK_bed_kind_detail_bed_kind">
|
||||
<End Role="bed_kind" EntitySet="bed_kind" />
|
||||
<End Role="bed_kind_detail" EntitySet="bed_kind_detail" />
|
||||
@@ -2158,6 +2312,10 @@
|
||||
<End Role="followers" EntitySet="followers" />
|
||||
<End Role="GuaDanOrderGuest" EntitySet="GuaDanOrderGuest" />
|
||||
</AssociationSet>
|
||||
<AssociationSet Name="FK_GuaDanOrderGuest_Order" Association="Self.FK_GuaDanOrderGuest_Order">
|
||||
<End Role="GuaDanOrder" EntitySet="GuaDanOrder" />
|
||||
<End Role="GuaDanOrderGuest" EntitySet="GuaDanOrderGuest" />
|
||||
</AssociationSet>
|
||||
<AssociationSet Name="FK_GuaDanOrderGuest_RoomUuid" Association="Self.FK_GuaDanOrderGuest_RoomUuid">
|
||||
<End Role="Room" EntitySet="Room" />
|
||||
<End Role="GuaDanOrderGuest" EntitySet="GuaDanOrderGuest" />
|
||||
@@ -2202,6 +2360,14 @@
|
||||
<End Role="news_kind" EntitySet="news_kind" />
|
||||
<End Role="news" EntitySet="news" />
|
||||
</AssociationSet>
|
||||
<AssociationSet Name="FK_Position_Area" Association="Self.FK_Position_Area">
|
||||
<End Role="AncestralTabletArea" EntitySet="AncestralTabletArea" />
|
||||
<End Role="AncestralTabletPosition" EntitySet="AncestralTabletPosition" />
|
||||
</AssociationSet>
|
||||
<AssociationSet Name="FK_Position_Status" Association="Self.FK_Position_Status">
|
||||
<End Role="AncestralTabletStatus" EntitySet="AncestralTabletStatus" />
|
||||
<End Role="AncestralTabletPosition" EntitySet="AncestralTabletPosition" />
|
||||
</AssociationSet>
|
||||
<AssociationSet Name="FK_pro_order_activity" Association="Self.FK_pro_order_activity">
|
||||
<End Role="activity" EntitySet="activity" />
|
||||
<End Role="pro_order" EntitySet="pro_order" />
|
||||
@@ -2270,6 +2436,10 @@
|
||||
<End Role="RegionRoomBedStatus" EntitySet="RegionRoomBedStatus" />
|
||||
<End Role="RegionRoomBed" EntitySet="RegionRoomBed" />
|
||||
</AssociationSet>
|
||||
<AssociationSet Name="FK_Registrant_Position" Association="Self.FK_Registrant_Position">
|
||||
<End Role="AncestralTabletPosition" EntitySet="AncestralTabletPosition" />
|
||||
<End Role="AncestralTabletRegistrant" EntitySet="AncestralTabletRegistrant" />
|
||||
</AssociationSet>
|
||||
<AssociationSet Name="FK_Room_Region" Association="Self.FK_Room_Region">
|
||||
<End Role="Region" EntitySet="Region" />
|
||||
<End Role="Room" EntitySet="Room" />
|
||||
@@ -4348,6 +4518,35 @@
|
||||
<End Role="RegionRoomBedStatus" EntitySet="RegionRoomBedStatus" />
|
||||
<End Role="RegionRoomBed" EntitySet="RegionRoomBed" />
|
||||
</AssociationSet>
|
||||
<EntitySet Name="AncestralTabletArea" EntityType="Model.AncestralTabletArea" />
|
||||
<EntitySet Name="AncestralTabletPosition" EntityType="Model.AncestralTabletPosition" />
|
||||
<EntitySet Name="AncestralTabletPositionRecord" EntityType="Model.AncestralTabletPositionRecord" />
|
||||
<EntitySet Name="AncestralTabletRegistrant" EntityType="Model.AncestralTabletRegistrant" />
|
||||
<EntitySet Name="AncestralTabletStatus" EntityType="Model.AncestralTabletStatus" />
|
||||
<AssociationSet Name="FK_AncestralTabletArea_Parent" Association="Model.FK_AncestralTabletArea_Parent">
|
||||
<End Role="AncestralTabletArea" EntitySet="AncestralTabletArea" />
|
||||
<End Role="AncestralTabletArea1" EntitySet="AncestralTabletArea" />
|
||||
</AssociationSet>
|
||||
<AssociationSet Name="FK_Position_Area" Association="Model.FK_Position_Area">
|
||||
<End Role="AncestralTabletArea" EntitySet="AncestralTabletArea" />
|
||||
<End Role="AncestralTabletPosition" EntitySet="AncestralTabletPosition" />
|
||||
</AssociationSet>
|
||||
<AssociationSet Name="FK_Position_Status" Association="Model.FK_Position_Status">
|
||||
<End Role="AncestralTabletStatus" EntitySet="AncestralTabletStatus" />
|
||||
<End Role="AncestralTabletPosition" EntitySet="AncestralTabletPosition" />
|
||||
</AssociationSet>
|
||||
<AssociationSet Name="FK_Registrant_Position" Association="Model.FK_Registrant_Position">
|
||||
<End Role="AncestralTabletPosition" EntitySet="AncestralTabletPosition" />
|
||||
<End Role="AncestralTabletRegistrant" EntitySet="AncestralTabletRegistrant" />
|
||||
</AssociationSet>
|
||||
<AssociationSet Name="FK__Ancestral__Regis__5A1A5A11" Association="Model.FK__Ancestral__Regis__5A1A5A11">
|
||||
<End Role="AncestralTabletRegistrant" EntitySet="AncestralTabletRegistrant" />
|
||||
<End Role="AncestralTabletPositionRecord" EntitySet="AncestralTabletPositionRecord" />
|
||||
</AssociationSet>
|
||||
<AssociationSet Name="FK_GuaDanOrderGuest_Order" Association="Model.FK_GuaDanOrderGuest_Order">
|
||||
<End Role="GuaDanOrder" EntitySet="GuaDanOrder" />
|
||||
<End Role="GuaDanOrderGuest" EntitySet="GuaDanOrderGuest" />
|
||||
</AssociationSet>
|
||||
</EntityContainer>
|
||||
<ComplexType Name="sp_helpdiagramdefinition_Result">
|
||||
<Property Type="Int32" Name="version" Nullable="true" />
|
||||
@@ -4641,6 +4840,7 @@
|
||||
<Property Name="IsCancel" Type="Boolean" Nullable="false" />
|
||||
<NavigationProperty Name="admin" Relationship="Model.FK_GuaDanOrder_Admin_CreateUser" FromRole="GuaDanOrder" ToRole="admin" />
|
||||
<NavigationProperty Name="followers" Relationship="Model.FK_GuaDanOrder_Followers" FromRole="GuaDanOrder" ToRole="follower" />
|
||||
<NavigationProperty Name="GuaDanOrderGuest" Relationship="Model.FK_GuaDanOrderGuest_Order" FromRole="GuaDanOrder" ToRole="GuaDanOrderGuest" />
|
||||
</EntityType>
|
||||
<EntityType Name="GuaDanOrderGuest">
|
||||
<Key>
|
||||
@@ -4660,6 +4860,8 @@
|
||||
<NavigationProperty Name="Room" Relationship="Model.FK_GuaDanOrderGuest_RoomUuid" FromRole="GuaDanOrderGuest" ToRole="Room" />
|
||||
<NavigationProperty Name="RegionRoomBedStatus" Relationship="Model.FK_GuaDanOrderGuest_StatusCode" FromRole="GuaDanOrderGuest" ToRole="RegionRoomBedStatus" />
|
||||
<NavigationProperty Name="RegionAndRoomAndBedSchedule" Relationship="Model.FK_Schedule_GuaDanOrderGuest" FromRole="GuaDanOrderGuest" ToRole="RegionAndRoomAndBedSchedule" />
|
||||
<Property Name="OrderUuid" Type="Guid" />
|
||||
<NavigationProperty Name="GuaDanOrder" Relationship="Model.FK_GuaDanOrderGuest_Order" FromRole="GuaDanOrderGuest" ToRole="GuaDanOrder" />
|
||||
</EntityType>
|
||||
<EntityType Name="GuadanTimeSetting">
|
||||
<Key>
|
||||
@@ -4912,6 +5114,156 @@
|
||||
</Dependent>
|
||||
</ReferentialConstraint>
|
||||
</Association>
|
||||
<EntityType Name="AncestralTabletArea">
|
||||
<Key>
|
||||
<PropertyRef Name="AreaId" />
|
||||
</Key>
|
||||
<Property Name="AreaId" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
|
||||
<Property Name="AreaName" Type="String" Nullable="false" MaxLength="10" FixedLength="false" Unicode="true" />
|
||||
<Property Name="AreaCode" Type="String" Nullable="false" MaxLength="20" FixedLength="false" Unicode="true" />
|
||||
<Property Name="ParentAreaId" Type="Int32" />
|
||||
<Property Name="AreaType" Type="String" MaxLength="10" FixedLength="false" Unicode="true" />
|
||||
<Property Name="Price" Type="Int32" />
|
||||
<Property Name="SortOrder" Type="Int32" />
|
||||
<Property Name="IsDisabled" Type="Boolean" Nullable="false" />
|
||||
<Property Name="Description" Type="String" MaxLength="200" FixedLength="false" Unicode="true" />
|
||||
<NavigationProperty Name="AncestralTabletArea1" Relationship="Model.FK_AncestralTabletArea_Parent" FromRole="AncestralTabletArea" ToRole="AncestralTabletArea1" />
|
||||
<NavigationProperty Name="AncestralTabletArea2" Relationship="Model.FK_AncestralTabletArea_Parent" FromRole="AncestralTabletArea1" ToRole="AncestralTabletArea" />
|
||||
<NavigationProperty Name="AncestralTabletPosition" Relationship="Model.FK_Position_Area" FromRole="AncestralTabletArea" ToRole="AncestralTabletPosition" />
|
||||
</EntityType>
|
||||
<EntityType Name="AncestralTabletPosition">
|
||||
<Key>
|
||||
<PropertyRef Name="PositionId" />
|
||||
</Key>
|
||||
<Property Name="PositionId" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
|
||||
<Property Name="AreaId" Type="Int32" Nullable="false" />
|
||||
<Property Name="PositionCode" Type="String" Nullable="false" MaxLength="20" FixedLength="false" Unicode="true" />
|
||||
<Property Name="PositionName" Type="String" MaxLength="50" FixedLength="false" Unicode="true" />
|
||||
<Property Name="Price" Type="Int32" />
|
||||
<Property Name="StatusCode" Type="String" MaxLength="20" FixedLength="false" Unicode="true" />
|
||||
<Property Name="Description" Type="String" MaxLength="200" FixedLength="false" Unicode="true" />
|
||||
<Property Name="RowNo" Type="Int32" />
|
||||
<Property Name="ColumnNo" Type="Int32" />
|
||||
<NavigationProperty Name="AncestralTabletArea" Relationship="Model.FK_Position_Area" FromRole="AncestralTabletPosition" ToRole="AncestralTabletArea" />
|
||||
<NavigationProperty Name="AncestralTabletStatus" Relationship="Model.FK_Position_Status" FromRole="AncestralTabletPosition" ToRole="AncestralTabletStatus" />
|
||||
<NavigationProperty Name="AncestralTabletRegistrant" Relationship="Model.FK_Registrant_Position" FromRole="AncestralTabletPosition" ToRole="AncestralTabletRegistrant" />
|
||||
</EntityType>
|
||||
<EntityType Name="AncestralTabletPositionRecord">
|
||||
<Key>
|
||||
<PropertyRef Name="RecordId" />
|
||||
</Key>
|
||||
<Property Name="RecordId" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
|
||||
<Property Name="RegistrantCode" Type="String" Nullable="false" MaxLength="20" FixedLength="false" Unicode="true" />
|
||||
<Property Name="NPTitle" Type="String" MaxLength="30" FixedLength="false" Unicode="true" />
|
||||
<Property Name="NPStandDate" Type="DateTime" Nullable="false" Precision="0" />
|
||||
<Property Name="NPYangShang" Type="String" MaxLength="20" FixedLength="false" Unicode="true" />
|
||||
<Property Name="WPContent" Type="String" MaxLength="1000" FixedLength="false" Unicode="true" />
|
||||
<Property Name="CreatedAt" Type="DateTime" Nullable="false" Precision="3" />
|
||||
<Property Name="UpdatedAt" Type="DateTime" Precision="3" />
|
||||
<NavigationProperty Name="AncestralTabletRegistrant" Relationship="Model.FK__Ancestral__Regis__5A1A5A11" FromRole="AncestralTabletPositionRecord" ToRole="AncestralTabletRegistrant" />
|
||||
</EntityType>
|
||||
<EntityType Name="AncestralTabletRegistrant">
|
||||
<Key>
|
||||
<PropertyRef Name="RegistrantCode" />
|
||||
</Key>
|
||||
<Property Name="RegistrantCode" Type="String" Nullable="false" MaxLength="20" FixedLength="false" Unicode="true" />
|
||||
<Property Name="Name" Type="String" Nullable="false" MaxLength="50" FixedLength="false" Unicode="true" />
|
||||
<Property Name="Phone" Type="String" MaxLength="50" FixedLength="false" Unicode="true" />
|
||||
<Property Name="Address" Type="String" MaxLength="60" FixedLength="false" Unicode="true" />
|
||||
<Property Name="RegisterDate" Type="DateTime" Nullable="false" Precision="0" />
|
||||
<Property Name="Price" Type="Int32" />
|
||||
<Property Name="PositionId" Type="Int32" />
|
||||
<Property Name="StartDate" Type="DateTime" Nullable="false" Precision="0" />
|
||||
<Property Name="EndDate" Type="DateTime" Precision="0" />
|
||||
<Property Name="IsLongTerm" Type="Boolean" Nullable="false" />
|
||||
<Property Name="IsActive" Type="Boolean" Nullable="false" />
|
||||
<Property Name="CreatedAt" Type="DateTime" Nullable="false" Precision="3" />
|
||||
<Property Name="UpdatedAt" Type="DateTime" Precision="3" />
|
||||
<Property Name="IsEnd" Type="Boolean" Nullable="false" />
|
||||
<NavigationProperty Name="AncestralTabletPosition" Relationship="Model.FK_Registrant_Position" FromRole="AncestralTabletRegistrant" ToRole="AncestralTabletPosition" />
|
||||
<NavigationProperty Name="AncestralTabletPositionRecord" Relationship="Model.FK__Ancestral__Regis__5A1A5A11" FromRole="AncestralTabletRegistrant" ToRole="AncestralTabletPositionRecord" />
|
||||
</EntityType>
|
||||
<EntityType Name="AncestralTabletStatus">
|
||||
<Key>
|
||||
<PropertyRef Name="StatusCode" />
|
||||
</Key>
|
||||
<Property Name="StatusCode" Type="String" Nullable="false" MaxLength="20" FixedLength="false" Unicode="true" />
|
||||
<Property Name="StatusName" Type="String" Nullable="false" MaxLength="20" FixedLength="false" Unicode="true" />
|
||||
<Property Name="StatusType" Type="String" Nullable="false" MaxLength="20" FixedLength="false" Unicode="true" />
|
||||
<NavigationProperty Name="AncestralTabletPosition" Relationship="Model.FK_Position_Status" FromRole="AncestralTabletStatus" ToRole="AncestralTabletPosition" />
|
||||
</EntityType>
|
||||
<Association Name="FK_AncestralTabletArea_Parent">
|
||||
<End Type="Model.AncestralTabletArea" Role="AncestralTabletArea" Multiplicity="0..1" />
|
||||
<End Type="Model.AncestralTabletArea" Role="AncestralTabletArea1" Multiplicity="*" />
|
||||
<ReferentialConstraint>
|
||||
<Principal Role="AncestralTabletArea">
|
||||
<PropertyRef Name="AreaId" />
|
||||
</Principal>
|
||||
<Dependent Role="AncestralTabletArea1">
|
||||
<PropertyRef Name="ParentAreaId" />
|
||||
</Dependent>
|
||||
</ReferentialConstraint>
|
||||
</Association>
|
||||
<Association Name="FK_Position_Area">
|
||||
<End Type="Model.AncestralTabletArea" Role="AncestralTabletArea" Multiplicity="1" />
|
||||
<End Type="Model.AncestralTabletPosition" Role="AncestralTabletPosition" Multiplicity="*" />
|
||||
<ReferentialConstraint>
|
||||
<Principal Role="AncestralTabletArea">
|
||||
<PropertyRef Name="AreaId" />
|
||||
</Principal>
|
||||
<Dependent Role="AncestralTabletPosition">
|
||||
<PropertyRef Name="AreaId" />
|
||||
</Dependent>
|
||||
</ReferentialConstraint>
|
||||
</Association>
|
||||
<Association Name="FK_Position_Status">
|
||||
<End Type="Model.AncestralTabletStatus" Role="AncestralTabletStatus" Multiplicity="0..1" />
|
||||
<End Type="Model.AncestralTabletPosition" Role="AncestralTabletPosition" Multiplicity="*" />
|
||||
<ReferentialConstraint>
|
||||
<Principal Role="AncestralTabletStatus">
|
||||
<PropertyRef Name="StatusCode" />
|
||||
</Principal>
|
||||
<Dependent Role="AncestralTabletPosition">
|
||||
<PropertyRef Name="StatusCode" />
|
||||
</Dependent>
|
||||
</ReferentialConstraint>
|
||||
</Association>
|
||||
<Association Name="FK_Registrant_Position">
|
||||
<End Type="Model.AncestralTabletPosition" Role="AncestralTabletPosition" Multiplicity="0..1" />
|
||||
<End Type="Model.AncestralTabletRegistrant" Role="AncestralTabletRegistrant" Multiplicity="*" />
|
||||
<ReferentialConstraint>
|
||||
<Principal Role="AncestralTabletPosition">
|
||||
<PropertyRef Name="PositionId" />
|
||||
</Principal>
|
||||
<Dependent Role="AncestralTabletRegistrant">
|
||||
<PropertyRef Name="PositionId" />
|
||||
</Dependent>
|
||||
</ReferentialConstraint>
|
||||
</Association>
|
||||
<Association Name="FK__Ancestral__Regis__5A1A5A11">
|
||||
<End Type="Model.AncestralTabletRegistrant" Role="AncestralTabletRegistrant" Multiplicity="1" />
|
||||
<End Type="Model.AncestralTabletPositionRecord" Role="AncestralTabletPositionRecord" Multiplicity="*" />
|
||||
<ReferentialConstraint>
|
||||
<Principal Role="AncestralTabletRegistrant">
|
||||
<PropertyRef Name="RegistrantCode" />
|
||||
</Principal>
|
||||
<Dependent Role="AncestralTabletPositionRecord">
|
||||
<PropertyRef Name="RegistrantCode" />
|
||||
</Dependent>
|
||||
</ReferentialConstraint>
|
||||
</Association>
|
||||
<Association Name="FK_GuaDanOrderGuest_Order">
|
||||
<End Type="Model.GuaDanOrder" Role="GuaDanOrder" Multiplicity="0..1" />
|
||||
<End Type="Model.GuaDanOrderGuest" Role="GuaDanOrderGuest" Multiplicity="*" />
|
||||
<ReferentialConstraint>
|
||||
<Principal Role="GuaDanOrder">
|
||||
<PropertyRef Name="Uuid" />
|
||||
</Principal>
|
||||
<Dependent Role="GuaDanOrderGuest">
|
||||
<PropertyRef Name="OrderUuid" />
|
||||
</Dependent>
|
||||
</ReferentialConstraint>
|
||||
</Association>
|
||||
</Schema>
|
||||
</edmx:ConceptualModels>
|
||||
<!-- C-S mapping content -->
|
||||
@@ -5773,6 +6125,7 @@
|
||||
<EntitySetMapping Name="GuaDanOrderGuest">
|
||||
<EntityTypeMapping TypeName="Model.GuaDanOrderGuest">
|
||||
<MappingFragment StoreEntitySet="GuaDanOrderGuest">
|
||||
<ScalarProperty Name="OrderUuid" ColumnName="OrderUuid" />
|
||||
<ScalarProperty Name="StatusCode" ColumnName="StatusCode" />
|
||||
<ScalarProperty Name="CheckOutAt" ColumnName="CheckOutAt" />
|
||||
<ScalarProperty Name="CheckInAt" ColumnName="CheckInAt" />
|
||||
@@ -5885,6 +6238,79 @@
|
||||
</MappingFragment>
|
||||
</EntityTypeMapping>
|
||||
</EntitySetMapping>
|
||||
<EntitySetMapping Name="AncestralTabletArea">
|
||||
<EntityTypeMapping TypeName="Model.AncestralTabletArea">
|
||||
<MappingFragment StoreEntitySet="AncestralTabletArea">
|
||||
<ScalarProperty Name="Description" ColumnName="Description" />
|
||||
<ScalarProperty Name="IsDisabled" ColumnName="IsDisabled" />
|
||||
<ScalarProperty Name="SortOrder" ColumnName="SortOrder" />
|
||||
<ScalarProperty Name="Price" ColumnName="Price" />
|
||||
<ScalarProperty Name="AreaType" ColumnName="AreaType" />
|
||||
<ScalarProperty Name="ParentAreaId" ColumnName="ParentAreaId" />
|
||||
<ScalarProperty Name="AreaCode" ColumnName="AreaCode" />
|
||||
<ScalarProperty Name="AreaName" ColumnName="AreaName" />
|
||||
<ScalarProperty Name="AreaId" ColumnName="AreaId" />
|
||||
</MappingFragment>
|
||||
</EntityTypeMapping>
|
||||
</EntitySetMapping>
|
||||
<EntitySetMapping Name="AncestralTabletPosition">
|
||||
<EntityTypeMapping TypeName="Model.AncestralTabletPosition">
|
||||
<MappingFragment StoreEntitySet="AncestralTabletPosition">
|
||||
<ScalarProperty Name="ColumnNo" ColumnName="ColumnNo" />
|
||||
<ScalarProperty Name="RowNo" ColumnName="RowNo" />
|
||||
<ScalarProperty Name="Description" ColumnName="Description" />
|
||||
<ScalarProperty Name="StatusCode" ColumnName="StatusCode" />
|
||||
<ScalarProperty Name="Price" ColumnName="Price" />
|
||||
<ScalarProperty Name="PositionName" ColumnName="PositionName" />
|
||||
<ScalarProperty Name="PositionCode" ColumnName="PositionCode" />
|
||||
<ScalarProperty Name="AreaId" ColumnName="AreaId" />
|
||||
<ScalarProperty Name="PositionId" ColumnName="PositionId" />
|
||||
</MappingFragment>
|
||||
</EntityTypeMapping>
|
||||
</EntitySetMapping>
|
||||
<EntitySetMapping Name="AncestralTabletPositionRecord">
|
||||
<EntityTypeMapping TypeName="Model.AncestralTabletPositionRecord">
|
||||
<MappingFragment StoreEntitySet="AncestralTabletPositionRecord">
|
||||
<ScalarProperty Name="UpdatedAt" ColumnName="UpdatedAt" />
|
||||
<ScalarProperty Name="CreatedAt" ColumnName="CreatedAt" />
|
||||
<ScalarProperty Name="WPContent" ColumnName="WPContent" />
|
||||
<ScalarProperty Name="NPYangShang" ColumnName="NPYangShang" />
|
||||
<ScalarProperty Name="NPStandDate" ColumnName="NPStandDate" />
|
||||
<ScalarProperty Name="NPTitle" ColumnName="NPTitle" />
|
||||
<ScalarProperty Name="RegistrantCode" ColumnName="RegistrantCode" />
|
||||
<ScalarProperty Name="RecordId" ColumnName="RecordId" />
|
||||
</MappingFragment>
|
||||
</EntityTypeMapping>
|
||||
</EntitySetMapping>
|
||||
<EntitySetMapping Name="AncestralTabletRegistrant">
|
||||
<EntityTypeMapping TypeName="Model.AncestralTabletRegistrant">
|
||||
<MappingFragment StoreEntitySet="AncestralTabletRegistrant">
|
||||
<ScalarProperty Name="IsEnd" ColumnName="IsEnd" />
|
||||
<ScalarProperty Name="UpdatedAt" ColumnName="UpdatedAt" />
|
||||
<ScalarProperty Name="CreatedAt" ColumnName="CreatedAt" />
|
||||
<ScalarProperty Name="IsActive" ColumnName="IsActive" />
|
||||
<ScalarProperty Name="IsLongTerm" ColumnName="IsLongTerm" />
|
||||
<ScalarProperty Name="EndDate" ColumnName="EndDate" />
|
||||
<ScalarProperty Name="StartDate" ColumnName="StartDate" />
|
||||
<ScalarProperty Name="PositionId" ColumnName="PositionId" />
|
||||
<ScalarProperty Name="Price" ColumnName="Price" />
|
||||
<ScalarProperty Name="RegisterDate" ColumnName="RegisterDate" />
|
||||
<ScalarProperty Name="Address" ColumnName="Address" />
|
||||
<ScalarProperty Name="Phone" ColumnName="Phone" />
|
||||
<ScalarProperty Name="Name" ColumnName="Name" />
|
||||
<ScalarProperty Name="RegistrantCode" ColumnName="RegistrantCode" />
|
||||
</MappingFragment>
|
||||
</EntityTypeMapping>
|
||||
</EntitySetMapping>
|
||||
<EntitySetMapping Name="AncestralTabletStatus">
|
||||
<EntityTypeMapping TypeName="Model.AncestralTabletStatus">
|
||||
<MappingFragment StoreEntitySet="AncestralTabletStatus">
|
||||
<ScalarProperty Name="StatusType" ColumnName="StatusType" />
|
||||
<ScalarProperty Name="StatusName" ColumnName="StatusName" />
|
||||
<ScalarProperty Name="StatusCode" ColumnName="StatusCode" />
|
||||
</MappingFragment>
|
||||
</EntityTypeMapping>
|
||||
</EntitySetMapping>
|
||||
</EntityContainerMapping>
|
||||
</Mapping>
|
||||
</edmx:Mappings>
|
||||
|
||||
Reference in New Issue
Block a user