فهرست منبع

Merge branch 'master' of http://112.172.147.34:4936/style24/style24.doc.git

gagamel 5 سال پیش
والد
کامیت
8fe9171f93

BIN
산출물/3.설계/03.인터페이스/TSIT-D302-인터페이스명세서(V0.1)-20201224_상품.xlsx


+ 47 - 48
산출물/3.설계/05.DB-Object/06.DDL/table.sql

@@ -259,31 +259,7 @@ CREATE TABLE TB_BRAND_MD
 COMMENT '브랜드담당MD. 브랜드의 담당MD 등록에 의한 발생'
 ;
 
-################################################################################
-#브랜드기획전
-################################################################################
-DROP TABLE IF EXISTS TB_BRAND_PLAN RESTRICT;
-CREATE TABLE TB_BRAND_PLAN (
-  BRAND_CD VARCHAR(4)   NOT NULL COMMENT '브랜드코드', -- 브랜드코드
-  PLAN_SQ  INT UNSIGNED NOT NULL COMMENT '기획전일련번호', -- 기획전일련번호
-  DISP_YN  CHAR(1)      NOT NULL DEFAULT 'Y' COMMENT '표시여부', -- 표시여부
-  REG_NO   INT UNSIGNED NOT NULL COMMENT '등록자번호', -- 등록자번호
-  REG_DT   TIMESTAMP    NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '등록일시', -- 등록일시
-  UPD_NO   INT UNSIGNED NOT NULL COMMENT '수정자번호', -- 수정자번호
-  UPD_DT   TIMESTAMP    NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '수정일시' -- 수정일시
-)
-COMMENT '브랜드기획전. 브랜드기획전 등록에의한 발생';
-
--- 브랜드기획전
-ALTER TABLE TB_BRAND_PLAN
-  ADD CONSTRAINT PK_BRAND_PLAN -- 브랜드기획전 기본키
-    PRIMARY KEY (
-      BRAND_CD, -- 브랜드코드
-      PLAN_SQ   -- 기획전일련번호
-    );
-
-
-################################################################################
+###############################################################################
 #약관
 ################################################################################
 DROP TABLE IF EXISTS TB_CLAUSE;
@@ -3138,6 +3114,52 @@ ALTER TABLE TB_PLAN_GOODS
       GOODS_CD     -- 상품코드
     );
 
+################################################################################
+#브랜드기획전
+################################################################################
+DROP TABLE IF EXISTS TB_PLAN_BRAND RESTRICT;
+CREATE TABLE TB_PLAN_BRAND (
+  BRAND_CD VARCHAR(4)   NOT NULL COMMENT '브랜드코드', -- 브랜드코드
+  PLAN_SQ  INT UNSIGNED NOT NULL COMMENT '기획전일련번호', -- 기획전일련번호
+  DISP_YN  CHAR(1)      NOT NULL DEFAULT 'Y' COMMENT '표시여부', -- 표시여부
+  REG_NO   INT UNSIGNED NOT NULL COMMENT '등록자번호', -- 등록자번호
+  REG_DT   TIMESTAMP    NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '등록일시', -- 등록일시
+  UPD_NO   INT UNSIGNED NOT NULL COMMENT '수정자번호', -- 수정자번호
+  UPD_DT   TIMESTAMP    NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '수정일시' -- 수정일시
+)
+COMMENT '브랜드기획전. 브랜드기획전 등록에의한 발생';
+
+-- 브랜드기획전
+ALTER TABLE TB_PLAN_BRAND
+  ADD CONSTRAINT PK_PLAN_BRAND -- 브랜드기획전 기본키
+    PRIMARY KEY (
+      BRAND_CD, -- 브랜드코드
+      PLAN_SQ   -- 기획전일련번호
+    );
+
+################################################################################
+# 카테고리기획전
+################################################################################
+DROP TABLE IF EXISTS TB_PLAN_CATE RESTRICT;
+CREATE TABLE TB_PLAN_CATE (
+  CATE_CD INT UNSIGNED NOT NULL COMMENT '카테고리코드(대/중/소/세카테고리)', -- 카테고리코드
+  PLAN_SQ INT UNSIGNED NOT NULL COMMENT '기획전일련번호', -- 기획전일련번호
+  DISP_YN CHAR(1)      NOT NULL DEFAULT 'Y' COMMENT '표시여부', -- 표시여부
+  REG_NO  INT UNSIGNED NOT NULL COMMENT '등록자번호', -- 등록자번호
+  REG_DT  TIMESTAMP    NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '등록일시', -- 등록일시
+  UPD_NO  INT UNSIGNED NOT NULL COMMENT '수정자번호', -- 수정자번호
+  UPD_DT  TIMESTAMP    NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '수정일시' -- 수정일시
+)
+COMMENT '카테고리기획전. 카테고리기획전 등록에의한 발생';
+
+-- 카테고리기획전
+ALTER TABLE TB_PLAN_CATE
+  ADD CONSTRAINT PK_PLAN_CATE -- 카테고리기획전 기본키
+    PRIMARY KEY (
+      CATE_CD, -- 카테고리코드
+      PLAN_SQ  -- 기획전일련번호
+    );
+
 ################################################################################
 #투표
 ################################################################################
@@ -8083,29 +8105,6 @@ CREATE TABLE TB_CATE_4SRCH (
 )
 COMMENT '카테고리4SRCH. 카테고리 갱신에 의한 발생.';
 
-################################################################################
-# 카테고리기획전
-################################################################################
-DROP TABLE IF EXISTS TB_CATE_PLAN RESTRICT;
-CREATE TABLE TB_CATE_PLAN (
-  CATE_CD INT UNSIGNED NOT NULL COMMENT '카테고리코드(대/중/소/세카테고리)', -- 카테고리코드
-  PLAN_SQ INT UNSIGNED NOT NULL COMMENT '기획전일련번호', -- 기획전일련번호
-  DISP_YN CHAR(1)      NOT NULL DEFAULT 'Y' COMMENT '표시여부', -- 표시여부
-  REG_NO  INT UNSIGNED NOT NULL COMMENT '등록자번호', -- 등록자번호
-  REG_DT  TIMESTAMP    NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '등록일시', -- 등록일시
-  UPD_NO  INT UNSIGNED NOT NULL COMMENT '수정자번호', -- 수정자번호
-  UPD_DT  TIMESTAMP    NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '수정일시' -- 수정일시
-)
-COMMENT '카테고리기획전. 카테고리기획전 등록에의한 발생';
-
--- 카테고리기획전
-ALTER TABLE TB_CATE_PLAN
-  ADD CONSTRAINT PK_CATE_PLAN -- 카테고리기획전 기본키
-    PRIMARY KEY (
-      CATE_CD, -- 카테고리코드
-      PLAN_SQ  -- 기획전일련번호
-    );
-
 ################################################################################
 # 카테고리별재고
 ################################################################################

+ 137 - 0
산출물/3.설계/ERD/.metadata/.log

@@ -3611,3 +3611,140 @@ Command-line arguments:  -os win32 -ws win32 -arch x86 D:\WIDE\workspace\webapps
 
 !ENTRY org.eclipse.osgi 2 1 2021-01-04 12:02:47.291
 !MESSAGE NLS unused message: ToggleColumnVisibilityHandler_5 in: com.tomato.exerd.handler.messages
+!SESSION 2021-01-04 18:32:46.906 -----------------------------------------------
+eclipse.buildId=M20090211-1700
+java.version=1.6.0_24
+java.vendor=Sun Microsystems Inc.
+BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=ko_KR
+Framework arguments:  D:\WIDE\workspace\webapps\style24\style24.doc\산출물\3.설계\ERD\ST24.exerd
+Command-line arguments:  -os win32 -ws win32 -arch x86 D:\WIDE\workspace\webapps\style24\style24.doc\산출물\3.설계\ERD\ST24.exerd
+
+!ENTRY org.eclipse.osgi 2 1 2021-01-04 18:32:48.025
+!MESSAGE NLS unused message: OpenResourceDialog_openButton_text in: org.eclipse.ui.internal.ide.messages
+
+!ENTRY org.eclipse.osgi 2 1 2021-01-04 18:32:48.026
+!MESSAGE NLS unused message: OpenResourceDialog_openWithMenu_label in: org.eclipse.ui.internal.ide.messages
+
+!ENTRY org.eclipse.osgi 2 1 2021-01-04 18:32:48.026
+!MESSAGE NLS unused message: OpenResourceDialog_openWithButton_toolTip in: org.eclipse.ui.internal.ide.messages
+
+!ENTRY org.eclipse.osgi 2 1 2021-01-04 18:32:48.027
+!MESSAGE NLS unused message: CleanDialog_cleanSelectedTaskName in: org.eclipse.ui.internal.ide.messages
+
+!ENTRY org.eclipse.osgi 2 1 2021-01-04 18:32:48.027
+!MESSAGE NLS unused message: RecentWorkspacesPreferencePage_PromptAtStartup_label in: org.eclipse.ui.internal.ide.messages
+
+!ENTRY org.eclipse.osgi 2 1 2021-01-04 18:32:48.028
+!MESSAGE NLS unused message: RecentWorkspacesPreferencePage_RemoveButton_label in: org.eclipse.ui.internal.ide.messages
+
+!ENTRY org.eclipse.osgi 2 1 2021-01-04 18:32:53.393
+!MESSAGE NLS unused message: url_couldNotResolve_projectDoesNotExist in: org.eclipse.core.internal.utils.messages
+
+!ENTRY org.eclipse.osgi 2 1 2021-01-04 18:32:53.631
+!MESSAGE NLS unused message: Shortcuts_shortcutTab in: org.eclipse.ui.internal.messages
+
+!ENTRY org.eclipse.osgi 2 1 2021-01-04 18:32:53.631
+!MESSAGE NLS unused message: Shortcuts_selectShortcutsLabel in: org.eclipse.ui.internal.messages
+
+!ENTRY org.eclipse.osgi 2 1 2021-01-04 18:32:53.632
+!MESSAGE NLS unused message: Shortcuts_availableMenus in: org.eclipse.ui.internal.messages
+
+!ENTRY org.eclipse.osgi 2 1 2021-01-04 18:32:53.632
+!MESSAGE NLS unused message: Shortcuts_availableCategories in: org.eclipse.ui.internal.messages
+
+!ENTRY org.eclipse.osgi 2 1 2021-01-04 18:32:53.632
+!MESSAGE NLS unused message: Shortcuts_allShortcuts in: org.eclipse.ui.internal.messages
+
+!ENTRY org.eclipse.osgi 2 1 2021-01-04 18:32:53.633
+!MESSAGE NLS unused message: Util_listNull in: org.eclipse.ui.internal.messages
+
+!ENTRY org.eclipse.osgi 2 1 2021-01-04 18:32:53.633
+!MESSAGE NLS unused message: OpenBrowserHandler_NoInfoDialogTitle in: org.eclipse.ui.internal.messages
+
+!ENTRY org.eclipse.osgi 2 1 2021-01-04 18:32:53.633
+!MESSAGE NLS unused message: AboutFeaturesDialog_SimpleTitle in: org.eclipse.ui.internal.messages
+
+!ENTRY org.eclipse.osgi 2 1 2021-01-04 18:32:57.644
+!MESSAGE NLS unused message: BinaryDumpHandler_1 in: com.tomato.exerd.handler.messages
+
+!ENTRY org.eclipse.osgi 2 1 2021-01-04 18:32:57.645
+!MESSAGE NLS unused message: ConvertToXMLHandler_1 in: com.tomato.exerd.handler.messages
+
+!ENTRY org.eclipse.osgi 2 1 2021-01-04 18:32:57.645
+!MESSAGE NLS unused message: SelectHandler_11 in: com.tomato.exerd.handler.messages
+
+!ENTRY org.eclipse.osgi 2 1 2021-01-04 18:32:57.646
+!MESSAGE NLS unused message: ToggleColumnVisibilityHandler_4 in: com.tomato.exerd.handler.messages
+
+!ENTRY org.eclipse.osgi 2 1 2021-01-04 18:32:57.646
+!MESSAGE NLS unused message: ToggleColumnVisibilityHandler_5 in: com.tomato.exerd.handler.messages
+!SESSION 2021-01-05 13:07:57.315 -----------------------------------------------
+eclipse.buildId=M20090211-1700
+java.version=1.6.0_24
+java.vendor=Sun Microsystems Inc.
+BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=ko_KR
+Framework arguments:  D:\WIDE\workspace\webapps\style24\style24.doc\산출물\3.설계\ERD\ST24.exerd
+Command-line arguments:  -os win32 -ws win32 -arch x86 D:\WIDE\workspace\webapps\style24\style24.doc\산출물\3.설계\ERD\ST24.exerd
+
+!ENTRY org.eclipse.osgi 2 1 2021-01-05 13:07:58.627
+!MESSAGE NLS unused message: OpenResourceDialog_openButton_text in: org.eclipse.ui.internal.ide.messages
+
+!ENTRY org.eclipse.osgi 2 1 2021-01-05 13:07:58.627
+!MESSAGE NLS unused message: OpenResourceDialog_openWithMenu_label in: org.eclipse.ui.internal.ide.messages
+
+!ENTRY org.eclipse.osgi 2 1 2021-01-05 13:07:58.627
+!MESSAGE NLS unused message: OpenResourceDialog_openWithButton_toolTip in: org.eclipse.ui.internal.ide.messages
+
+!ENTRY org.eclipse.osgi 2 1 2021-01-05 13:07:58.627
+!MESSAGE NLS unused message: CleanDialog_cleanSelectedTaskName in: org.eclipse.ui.internal.ide.messages
+
+!ENTRY org.eclipse.osgi 2 1 2021-01-05 13:07:58.627
+!MESSAGE NLS unused message: RecentWorkspacesPreferencePage_PromptAtStartup_label in: org.eclipse.ui.internal.ide.messages
+
+!ENTRY org.eclipse.osgi 2 1 2021-01-05 13:07:58.627
+!MESSAGE NLS unused message: RecentWorkspacesPreferencePage_RemoveButton_label in: org.eclipse.ui.internal.ide.messages
+
+!ENTRY org.eclipse.osgi 2 1 2021-01-05 13:07:59.955
+!MESSAGE NLS unused message: url_couldNotResolve_projectDoesNotExist in: org.eclipse.core.internal.utils.messages
+
+!ENTRY org.eclipse.core.resources 2 10035 2021-01-05 13:08:00.018
+!MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes.
+
+!ENTRY org.eclipse.osgi 2 1 2021-01-05 13:08:00.299
+!MESSAGE NLS unused message: Shortcuts_shortcutTab in: org.eclipse.ui.internal.messages
+
+!ENTRY org.eclipse.osgi 2 1 2021-01-05 13:08:00.299
+!MESSAGE NLS unused message: Shortcuts_selectShortcutsLabel in: org.eclipse.ui.internal.messages
+
+!ENTRY org.eclipse.osgi 2 1 2021-01-05 13:08:00.299
+!MESSAGE NLS unused message: Shortcuts_availableMenus in: org.eclipse.ui.internal.messages
+
+!ENTRY org.eclipse.osgi 2 1 2021-01-05 13:08:00.299
+!MESSAGE NLS unused message: Shortcuts_availableCategories in: org.eclipse.ui.internal.messages
+
+!ENTRY org.eclipse.osgi 2 1 2021-01-05 13:08:00.299
+!MESSAGE NLS unused message: Shortcuts_allShortcuts in: org.eclipse.ui.internal.messages
+
+!ENTRY org.eclipse.osgi 2 1 2021-01-05 13:08:00.299
+!MESSAGE NLS unused message: Util_listNull in: org.eclipse.ui.internal.messages
+
+!ENTRY org.eclipse.osgi 2 1 2021-01-05 13:08:00.299
+!MESSAGE NLS unused message: OpenBrowserHandler_NoInfoDialogTitle in: org.eclipse.ui.internal.messages
+
+!ENTRY org.eclipse.osgi 2 1 2021-01-05 13:08:00.299
+!MESSAGE NLS unused message: AboutFeaturesDialog_SimpleTitle in: org.eclipse.ui.internal.messages
+
+!ENTRY org.eclipse.osgi 2 1 2021-01-05 13:08:04.581
+!MESSAGE NLS unused message: BinaryDumpHandler_1 in: com.tomato.exerd.handler.messages
+
+!ENTRY org.eclipse.osgi 2 1 2021-01-05 13:08:04.581
+!MESSAGE NLS unused message: ConvertToXMLHandler_1 in: com.tomato.exerd.handler.messages
+
+!ENTRY org.eclipse.osgi 2 1 2021-01-05 13:08:04.581
+!MESSAGE NLS unused message: SelectHandler_11 in: com.tomato.exerd.handler.messages
+
+!ENTRY org.eclipse.osgi 2 1 2021-01-05 13:08:04.581
+!MESSAGE NLS unused message: ToggleColumnVisibilityHandler_4 in: com.tomato.exerd.handler.messages
+
+!ENTRY org.eclipse.osgi 2 1 2021-01-05 13:08:04.581
+!MESSAGE NLS unused message: ToggleColumnVisibilityHandler_5 in: com.tomato.exerd.handler.messages

BIN
산출물/3.설계/ERD/.metadata/.plugins/org.eclipse.core.resources/.root/47.tree


BIN
산출물/3.설계/ERD/.metadata/.plugins/org.eclipse.core.resources/.root/49.tree


BIN
산출물/3.설계/ERD/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources


BIN
산출물/3.설계/ERD/.metadata/.plugins/org.eclipse.core.resources/.snap


+ 48 - 48
산출물/3.설계/ERD/.metadata/.plugins/org.eclipse.ui.workbench/workbench.xml

@@ -1,20 +1,20 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <workbench progressCount="15" version="2.0">
 <workbenchAdvisor/>
-<window height="768" maximized="true" width="1024" x="104" y="104">
+<window height="768" maximized="true" width="1024" x="-3363" y="388">
 <fastViewData fastViewLocation="1024"/>
 <perspectiveBar>
 <itemSize x="160"/>
 </perspectiveBar>
 <coolbarLayout locked="0">
 <coolItem id="group.file" itemType="typeGroupMarker"/>
-<coolItem id="org.eclipse.ui.workbench.file" itemType="typeToolBarContribution" x="99" y="22"/>
+<coolItem id="org.eclipse.ui.workbench.file" itemType="typeToolBarContribution" x="109" y="22"/>
 <coolItem id="additions" itemType="typeGroupMarker"/>
 <coolItem id="com.tomato.devkit.toolbar" itemType="typeToolBarContribution" x="-1" y="-1"/>
 <coolItem id="org.eclipse.debug.ui.launchActionSet" itemType="typeToolBarContribution" x="-1" y="-1"/>
-<coolItem id="org.eclipse.search.searchActionSet" itemType="typeToolBarContribution" x="53" y="22"/>
+<coolItem id="org.eclipse.search.searchActionSet" itemType="typeToolBarContribution" x="63" y="22"/>
 <coolItem id="group.nav" itemType="typeGroupMarker"/>
-<coolItem id="org.eclipse.ui.workbench.navigate" itemType="typeToolBarContribution" x="114" y="22"/>
+<coolItem id="org.eclipse.ui.workbench.navigate" itemType="typeToolBarContribution" x="134" y="22"/>
 <coolItem id="group.editor" itemType="typeGroupMarker"/>
 <coolItem id="group.help" itemType="typeGroupMarker"/>
 <coolItem id="org.eclipse.ui.workbench.help" itemType="typeToolBarContribution" x="-1" y="-1"/>
@@ -32,10 +32,10 @@
 </folder>
 </info>
 </editorArea>
-<editor id="com.tomato.exerd.editor.DiagramEditor" name="ST24.exerd" partName="ST24.exerd" title="ST24.exerd" tooltip="D:\WIDE\workspace\webapps\style24\style24.doc\산출물\3.설계\ERD\ST24.exerd" workbook="DefaultEditorWorkbook">
+<editor activePart="true" focus="true" id="com.tomato.exerd.editor.DiagramEditor" name="ST24.exerd" partName="ST24.exerd" title="ST24.exerd" tooltip="D:\WIDE\workspace\webapps\style24\style24.doc\산출물\3.설계\ERD\ST24.exerd" workbook="DefaultEditorWorkbook">
 <input factoryID="org.eclipse.ui.ide.FileStoreEditorInputFactory" uri="file:/D:/WIDE/workspace/webapps/style24/style24.doc/산출물/3.설계/ERD/ST24.exerd"/>
 </editor>
-<editor activePart="true" focus="true" id="com.tomato.exerd.editor.DiagramEditor" name="iSTYLE24_Mall.exerd" partName="iSTYLE24_Mall.exerd" title="iSTYLE24_Mall.exerd" tooltip="D:\WIDE\workspace\webapps\style24\style24.doc\산출물\3.설계\ERD\asis\iSTYLE24_Mall.exerd" workbook="DefaultEditorWorkbook">
+<editor id="com.tomato.exerd.editor.DiagramEditor" name="iSTYLE24_Mall.exerd" partName="iSTYLE24_Mall.exerd" title="iSTYLE24_Mall.exerd" tooltip="D:\WIDE\workspace\webapps\style24\style24.doc\산출물\3.설계\ERD\asis\iSTYLE24_Mall.exerd" workbook="DefaultEditorWorkbook">
 <input factoryID="org.eclipse.ui.ide.FileStoreEditorInputFactory" uri="file:/D:/WIDE/workspace/webapps/style24/style24.doc/산출물/3.설계/ERD/asis/iSTYLE24_Mall.exerd"/>
 </editor>
 <editor id="com.tomato.exerd.editor.DiagramEditor" name="iSTYLE24_Wms.exerd" partName="iSTYLE24_Wms.exerd" title="iSTYLE24_Wms.exerd" tooltip="D:\WIDE\workspace\webapps\style24\style24.doc\산출물\3.설계\ERD\asis\iSTYLE24_Wms.exerd" workbook="DefaultEditorWorkbook">
@@ -168,7 +168,6 @@
 <navigationHistory>
 <editors>
 <editor factoryID="org.eclipse.ui.ide.FileStoreEditorInputFactory" id="com.tomato.exerd.editor.DiagramEditor" uri="file:/D:/WIDE/workspace/webapps/style24/style24.doc/산출물/3.설계/ERD/asis/iSTYLE24_Mall.exerd"/>
-<editor factoryID="org.eclipse.ui.ide.FileStoreEditorInputFactory" id="com.tomato.exerd.editor.DiagramEditor" uri="file:/D:/WIDE/workspace/webapps/style24/style24.doc/산출물/3.설계/ERD/asis/iSTYLE24_Wms.exerd"/>
 <editor factoryID="org.eclipse.ui.ide.FileStoreEditorInputFactory" id="com.tomato.exerd.editor.DiagramEditor" uri="file:/D:/WIDE/workspace/webapps/style24/style24.doc/산출물/3.설계/ERD/ST24.exerd"/>
 <editor factoryID="org.eclipse.ui.ide.FileStoreEditorInputFactory" id="com.tomato.exerd.editor.DiagramEditor" uri="file:/D:/WIDE/workspace/webapps/style24/style24.doc/산출물/3.설계/ERD/asis/iSTYLE24_Mall.exerd"/>
 <editor factoryID="org.eclipse.ui.ide.FileStoreEditorInputFactory" id="com.tomato.exerd.editor.DiagramEditor" uri="file:/D:/WIDE/workspace/webapps/style24/style24.doc/산출물/3.설계/ERD/ST24.exerd"/>
@@ -177,57 +176,58 @@
 <editor factoryID="org.eclipse.ui.ide.FileStoreEditorInputFactory" id="com.tomato.exerd.editor.DiagramEditor" uri="file:/D:/WIDE/workspace/webapps/style24/style24.doc/산출물/3.설계/ERD/asis/iSTYLE24_Mall.exerd"/>
 <editor factoryID="org.eclipse.ui.ide.FileStoreEditorInputFactory" id="com.tomato.exerd.editor.DiagramEditor" uri="file:/D:/WIDE/workspace/webapps/style24/style24.doc/산출물/3.설계/ERD/asis/iSTYLE24_Mall.exerd"/>
 <editor factoryID="org.eclipse.ui.ide.FileStoreEditorInputFactory" id="com.tomato.exerd.editor.DiagramEditor" uri="file:/D:/WIDE/workspace/webapps/style24/style24.doc/산출물/3.설계/ERD/asis/iSTYLE24_Mall.exerd"/>
+<editor factoryID="org.eclipse.ui.ide.FileStoreEditorInputFactory" id="com.tomato.exerd.editor.DiagramEditor" uri="file:/D:/WIDE/workspace/webapps/style24/style24.doc/산출물/3.설계/ERD/ST24.exerd"/>
 </editors>
-<item historyLabel="iSTYLE24_Wms.exerd" index="1"/>
 <item historyLabel="iSTYLE24_Mall.exerd" index="0"/>
-<item historyLabel="ST24.exerd" index="2"/>
+<item historyLabel="ST24.exerd" index="1"/>
 <item historyLabel="iSTYLE24_Mall.exerd" index="0"/>
-<item historyLabel="ST24.exerd" index="2"/>
+<item historyLabel="ST24.exerd" index="1"/>
 <item historyLabel="iSTYLE24_Mall.exerd" index="0"/>
-<item historyLabel="ST24.exerd" index="2"/>
+<item historyLabel="ST24.exerd" index="1"/>
 <item historyLabel="iSTYLE24_Mall.exerd" index="0"/>
-<item historyLabel="ST24.exerd" index="2"/>
+<item historyLabel="ST24.exerd" index="1"/>
 <item historyLabel="iSTYLE24_Mall.exerd" index="0"/>
-<item historyLabel="ST24.exerd" index="2"/>
-<item historyLabel="iSTYLE24_Mall.exerd" index="3"/>
-<item historyLabel="ST24.exerd" index="4"/>
-<item historyLabel="iSTYLE24_Mall.exerd" index="3"/>
-<item historyLabel="ST24.exerd" index="4"/>
+<item historyLabel="ST24.exerd" index="1"/>
+<item historyLabel="iSTYLE24_Mall.exerd" index="2"/>
+<item historyLabel="ST24.exerd" index="3"/>
+<item historyLabel="iSTYLE24_Mall.exerd" index="2"/>
+<item historyLabel="ST24.exerd" index="3"/>
+<item historyLabel="iSTYLE24_Mall.exerd" index="4"/>
+<item historyLabel="ST24.exerd" index="3"/>
 <item historyLabel="iSTYLE24_Mall.exerd" index="5"/>
-<item historyLabel="ST24.exerd" index="4"/>
+<item historyLabel="ST24.exerd" index="3"/>
 <item historyLabel="iSTYLE24_Mall.exerd" index="6"/>
-<item historyLabel="ST24.exerd" index="4"/>
+<item historyLabel="ST24.exerd" index="3"/>
 <item historyLabel="iSTYLE24_Mall.exerd" index="7"/>
-<item historyLabel="ST24.exerd" index="4"/>
-<item historyLabel="iSTYLE24_Mall.exerd" index="8"/>
-<item historyLabel="ST24.exerd" index="4"/>
-<item historyLabel="iSTYLE24_Mall.exerd" index="8"/>
-<item historyLabel="ST24.exerd" index="4"/>
-<item historyLabel="iSTYLE24_Mall.exerd" index="8"/>
-<item historyLabel="ST24.exerd" index="4"/>
-<item historyLabel="iSTYLE24_Mall.exerd" index="8"/>
-<item historyLabel="ST24.exerd" index="4"/>
-<item historyLabel="iSTYLE24_Mall.exerd" index="8"/>
-<item historyLabel="ST24.exerd" index="4"/>
-<item historyLabel="iSTYLE24_Mall.exerd" index="8"/>
-<item historyLabel="ST24.exerd" index="4"/>
-<item historyLabel="iSTYLE24_Mall.exerd" index="8"/>
-<item historyLabel="ST24.exerd" index="4"/>
-<item historyLabel="iSTYLE24_Mall.exerd" index="8"/>
-<item historyLabel="ST24.exerd" index="4"/>
-<item historyLabel="iSTYLE24_Mall.exerd" index="8"/>
-<item historyLabel="ST24.exerd" index="4"/>
-<item historyLabel="iSTYLE24_Mall.exerd" index="8"/>
-<item historyLabel="ST24.exerd" index="4"/>
-<item historyLabel="iSTYLE24_Mall.exerd" index="8"/>
-<item historyLabel="ST24.exerd" index="4"/>
-<item historyLabel="iSTYLE24_Mall.exerd" index="8"/>
-<item historyLabel="ST24.exerd" index="4"/>
-<item historyLabel="iSTYLE24_Mall.exerd" index="8"/>
-<item historyLabel="ST24.exerd" index="4"/>
+<item historyLabel="ST24.exerd" index="3"/>
+<item historyLabel="iSTYLE24_Mall.exerd" index="7"/>
+<item historyLabel="ST24.exerd" index="3"/>
+<item historyLabel="iSTYLE24_Mall.exerd" index="7"/>
+<item historyLabel="ST24.exerd" index="3"/>
+<item historyLabel="iSTYLE24_Mall.exerd" index="7"/>
+<item historyLabel="ST24.exerd" index="3"/>
+<item historyLabel="iSTYLE24_Mall.exerd" index="7"/>
+<item historyLabel="ST24.exerd" index="3"/>
+<item historyLabel="iSTYLE24_Mall.exerd" index="7"/>
+<item historyLabel="ST24.exerd" index="3"/>
+<item historyLabel="iSTYLE24_Mall.exerd" index="7"/>
+<item historyLabel="ST24.exerd" index="3"/>
+<item historyLabel="iSTYLE24_Mall.exerd" index="7"/>
+<item historyLabel="ST24.exerd" index="3"/>
+<item historyLabel="iSTYLE24_Mall.exerd" index="7"/>
+<item historyLabel="ST24.exerd" index="3"/>
+<item historyLabel="iSTYLE24_Mall.exerd" index="7"/>
+<item historyLabel="ST24.exerd" index="3"/>
+<item historyLabel="iSTYLE24_Mall.exerd" index="7"/>
+<item historyLabel="ST24.exerd" index="3"/>
+<item historyLabel="iSTYLE24_Mall.exerd" index="7"/>
+<item historyLabel="ST24.exerd" index="3"/>
+<item historyLabel="iSTYLE24_Mall.exerd" index="7"/>
+<item historyLabel="ST24.exerd" index="3"/>
+<item historyLabel="iSTYLE24_Mall.exerd" index="7"/>
+<item historyLabel="ST24.exerd" index="3"/>
 <item historyLabel="iSTYLE24_Mall.exerd" index="8"/>
-<item historyLabel="ST24.exerd" index="4"/>
-<item active="true" historyLabel="iSTYLE24_Mall.exerd" index="9"/>
+<item active="true" historyLabel="ST24.exerd" index="9"/>
 </navigationHistory>
 <input factoryID="org.eclipse.ui.internal.model.ResourceFactory" path="/" type="8"/>
 </page>

BIN
산출물/3.설계/ERD/ST24.exerd


BIN
산출물/3.설계/ST24_TSIT-D202-프로그램목록(V1.4)-20210101.xlsx