Kaynağa Gözat

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

eskim 5 yıl önce
ebeveyn
işleme
ea5cd12c92

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

@@ -1868,7 +1868,7 @@ CREATE TABLE TB_DELIVERY_ADDR (
   RECIP_NM        VARCHAR(100)  NULL     COMMENT '수령자명', -- 수령자명
   RECIP_PHNNO     VARCHAR(20)   NULL     COMMENT '수령자휴대전화번호', -- 수령자휴대전화번호
   RECIP_TELNO     VARCHAR(20)   NULL     COMMENT '수령자전화번호', -- 수령자전화번호
-  RECIP_ZIP_NO    VARCHAR(6)    NULL     COMMENT '수령자우편번호', -- 수령자우편번호
+  RECIP_ZIPCODE    VARCHAR(6)    NULL     COMMENT '수령자우편번호', -- 수령자우편번호
   RECIP_BASE_ADDR VARCHAR(200)  NULL     COMMENT '수령자기본주소', -- 수령자기본주소
   RECIP_DTL_ADDR  VARCHAR(200)  NULL     COMMENT '수령자상세주소', -- 수령자상세주소
   DELV_MEMO       VARCHAR(1000) NULL     COMMENT '배송메모', -- 배송메모
@@ -2004,7 +2004,7 @@ CREATE TABLE TB_DORMANT_CUST (
   EMAIL           VARCHAR(200) NULL     COMMENT '이메일(탈퇴 시 NULL로 처리)', -- 이메일_암호화
   EMAIL_AGREE_YN  CHAR(1)      NOT NULL DEFAULT 'N' COMMENT '이메일수신동의여부', -- 이메일수신동의여부
   EMAIL_AGREE_DT  TIMESTAMP    NULL     COMMENT '이메일수신동의일시', -- 이메일수신동의일시
-  HOME_ZIP_NO     VARCHAR(200) NULL     COMMENT '자택우편번호(탈퇴 시 NULL로 처리)', -- 자택우편번호_암호화
+  HOME_ZIPCODE    VARCHAR(200) NULL     COMMENT '자택우편번호(탈퇴 시 NULL로 처리)', -- 자택우편번호_암호화
   HOME_BASE_ADDR  VARCHAR(200) NULL     COMMENT '자택기본주소(탈퇴 시 NULL로 처리)', -- 자택기본주소_암호화
   HOME_DTL_ADDR   VARCHAR(200) NULL     COMMENT '자택상세주소(탈퇴 시 NULL로 처리)', -- 자택상세주소_암호화
   SITE_CD         VARCHAR(20)  NOT NULL COMMENT '가입사이트코드(공통코드G000)', -- 가입사이트코드(공통코드G000)
@@ -3532,7 +3532,7 @@ CREATE TABLE TB_SECEDE_CUST (
   EMAIL           VARCHAR(200) NULL     COMMENT '이메일(탈퇴 시 NULL로 처리)', -- 이메일_암호화
   EMAIL_AGREE_YN  CHAR(1)      NOT NULL DEFAULT 'N' COMMENT '이메일수신동의여부', -- 이메일수신동의여부
   EMAIL_AGREE_DT  TIMESTAMP    NULL     COMMENT '이메일수신동의일시', -- 이메일수신동의일시
-  HOME_ZIP_NO     VARCHAR(200) NULL     COMMENT '자택우편번호(탈퇴 시 NULL로 처리)', -- 자택우편번호_암호화
+  HOME_ZIPCODE    VARCHAR(200) NULL     COMMENT '자택우편번호(탈퇴 시 NULL로 처리)', -- 자택우편번호_암호화
   HOME_BASE_ADDR  VARCHAR(200) NULL     COMMENT '자택기본주소(탈퇴 시 NULL로 처리)', -- 자택기본주소_암호화
   HOME_DTL_ADDR   VARCHAR(200) NULL     COMMENT '자택상세주소(탈퇴 시 NULL로 처리)', -- 자택상세주소_암호화
   SITE_CD         VARCHAR(20)  NOT NULL COMMENT '가입사이트코드(공통코드G000)', -- 가입사이트코드(공통코드G000)
@@ -3882,6 +3882,7 @@ CREATE TABLE TB_DELV_FEE_POLICY
   REG_DT           TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL COMMENT '등록일시',
   UPD_NO           INT UNSIGNED NOT NULL COMMENT '수정자번호',
   UPD_DT           TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL COMMENT '수정일시',
+  DELIVERY_UNIT_NO INT NULL COMMENT 'AS-IS 물류단위번호',
   PRIMARY KEY (DELV_FEE_CD)
 )
 COMMENT '배송비정책. 업체별 배송비 정책 등록에 의한 발생'
@@ -8056,7 +8057,7 @@ CREATE TABLE TB_ORDER_CHANGE (
   CHGER_PHNNO        VARCHAR(20)   NULL     COMMENT '변경자휴대전화번호', -- 변경자휴대전화번호
   CHGER_TELNO        VARCHAR(20)   NULL     COMMENT '변경자전화번호', -- 변경자전화번호
   CHGER_EMAIL        VARCHAR(100)  NULL     COMMENT '변경자이메일', -- 변경자이메일
-  CHGER_ZIP_NO       VARCHAR(6)    NULL     COMMENT '변경자우편번호', -- 변경자우편번호
+  CHGER_ZIPCODE      VARCHAR(6)    NULL     COMMENT '변경자우편번호', -- 변경자우편번호
   CHGER_BASE_ADDR    VARCHAR(200)  NULL     COMMENT '변경자기본주소', -- 변경자기본주소
   CHGER_DTL_ADDR     VARCHAR(200)  NULL     COMMENT '변경자상세주소', -- 변경자상세주소
   CHGER_RTN_MEMO     VARCHAR(1000) NULL     COMMENT '변경자반품메모(수거시요청사항)', -- 변경자반품메모
@@ -9731,7 +9732,7 @@ CREATE TABLE TB_CUSTOMER (
   EMAIL           VARCHAR(200)       NULL     COMMENT '이메일(탈퇴 시 NULL로 처리)', -- 이메일_암호화
   EMAIL_AGREE_YN  CHAR(1)            NOT NULL DEFAULT 'N' COMMENT '이메일수신동의여부', -- 이메일수신동의여부
   EMAIL_AGREE_DT  TIMESTAMP          NULL     COMMENT '이메일수신동의일시', -- 이메일수신동의일시
-  HOME_ZIP_NO     VARCHAR(200)       NULL     COMMENT '자택우편번호(탈퇴 시 NULL로 처리)', -- 자택우편번호_암호화
+  HOME_ZIPCODE    VARCHAR(200)       NULL     COMMENT '자택우편번호(탈퇴 시 NULL로 처리)', -- 자택우편번호_암호화
   HOME_BASE_ADDR  VARCHAR(200)       NULL     COMMENT '자택기본주소(탈퇴 시 NULL로 처리)', -- 자택기본주소_암호화
   HOME_DTL_ADDR   VARCHAR(200)       NULL     COMMENT '자택상세주소(탈퇴 시 NULL로 처리)', -- 자택상세주소_암호화
   SITE_CD         VARCHAR(20)        NOT NULL COMMENT '가입사이트코드(공통코드G000)', -- 가입사이트코드(공통코드G000)
@@ -10298,7 +10299,7 @@ CREATE TABLE TB_COUPON (
   CUST_PUB_LIMIT_QTY SMALLINT UNSIGNED NOT NULL DEFAULT 0 COMMENT '고객당발행제한수량(0은 무제한)', -- 고객당발행제한수량(0은 무제한)
   TOT_PUB_LIMIT_QTY  INT UNSIGNED      NOT NULL DEFAULT 0 COMMENT '총발행제한수량(0은 무제한)', -- 총발행제한수량(0은 무제한)
   ONE_PUB_QTY        SMALLINT UNSIGNED NOT NULL DEFAULT 1 COMMENT '1회발행수량(기본은 1)', -- 1회발행수량(기본은 1)
-  DN_GB              VARCHAR(20)       NOT NULL DEFAULT 'G058_10' COMMENT '다운로드구분(공통코드G058)', -- 다운로드구분(공통코드G058)
+  DN_GB              VARCHAR(20)       NULL     COMMENT '다운로드구분(공통코드G058) 사용안함', -- 다운로드구분(공통코드G058)
   DOWN_STDT          TIMESTAMP         NULL     COMMENT '다운로드시작일시', -- 다운로드시작일시
   DOWN_EDDT          TIMESTAMP         NULL     COMMENT '다운로드종료일시', -- 다운로드종료일시
   BUY_LIMIT_AMT      INT UNSIGNED      NOT NULL DEFAULT 0 COMMENT '구매제한금액(0은 제한없음. 그 외는 00 이상 구매 시 사용)', -- 구매제한금액
@@ -10448,7 +10449,7 @@ CREATE TABLE TB_CUST_DELIVERY_ADDR (
   RECIP_NM          VARCHAR(100)  NULL     COMMENT '수령자명', -- 수령자명
   RECIP_PHNNO       VARCHAR(20)   NULL     COMMENT '수령자휴대전화번호', -- 수령자휴대전화번호
   RECIP_TELNO       VARCHAR(20)   NULL     COMMENT '수령자전화번호', -- 수령자전화번호
-  RECIP_ZIP_NO      VARCHAR(6)    NULL     COMMENT '수령자우편번호', -- 수령자우편번호
+  RECIP_ZIPCODE     VARCHAR(6)    NULL     COMMENT '수령자우편번호', -- 수령자우편번호
   RECIP_BASE_ADDR   VARCHAR(200)  NULL     COMMENT '수령자기본주소', -- 수령자기본주소
   RECIP_DTL_ADDR    VARCHAR(200)  NULL     COMMENT '수령자상세주소', -- 수령자상세주소
   DELV_MEMO         VARCHAR(1000) NULL     COMMENT '배송메모', -- 배송메모
@@ -10995,7 +10996,7 @@ CREATE TABLE TB_CUSTOMER_HST
 	EMAIL           VARCHAR(200) NULL COMMENT '이메일(탈퇴 시 NULL로 처리)',
 	EMAIL_AGREE_YN  CHAR DEFAULT 'N' NOT NULL COMMENT '이메일수신동의여부',
 	EMAIL_AGREE_DT  TIMESTAMP NULL COMMENT '이메일수신동의일시',
-	HOME_ZIP_NO     VARCHAR(200) NULL COMMENT '자택우편번호(탈퇴 시 NULL로 처리)',
+	HOME_ZIPCODE    VARCHAR(200) NULL COMMENT '자택우편번호(탈퇴 시 NULL로 처리)',
 	HOME_BASE_ADDR  VARCHAR(200) NULL COMMENT '자택기본주소(탈퇴 시 NULL로 처리)',
 	HOME_DTL_ADDR   VARCHAR(200) NULL COMMENT '자택상세주소(탈퇴 시 NULL로 처리)',
 	SITE_CD         VARCHAR(20) NOT NULL COMMENT '가입사이트코드(공통코드G000)',

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

@@ -3888,3 +3888,73 @@ Command-line arguments:  -os win32 -ws win32 -arch x86 D:\WIDE\workspace\webapps
 
 !ENTRY org.eclipse.osgi 2 1 2021-01-14 16:43:48.836
 !MESSAGE NLS unused message: ToggleColumnVisibilityHandler_5 in: com.tomato.exerd.handler.messages
+!SESSION 2021-01-25 10:33:25.244 -----------------------------------------------
+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-25 10:33:26.809
+!MESSAGE NLS unused message: OpenResourceDialog_openButton_text in: org.eclipse.ui.internal.ide.messages
+
+!ENTRY org.eclipse.osgi 2 1 2021-01-25 10:33:26.809
+!MESSAGE NLS unused message: OpenResourceDialog_openWithMenu_label in: org.eclipse.ui.internal.ide.messages
+
+!ENTRY org.eclipse.osgi 2 1 2021-01-25 10:33:26.809
+!MESSAGE NLS unused message: OpenResourceDialog_openWithButton_toolTip in: org.eclipse.ui.internal.ide.messages
+
+!ENTRY org.eclipse.osgi 2 1 2021-01-25 10:33:26.809
+!MESSAGE NLS unused message: CleanDialog_cleanSelectedTaskName in: org.eclipse.ui.internal.ide.messages
+
+!ENTRY org.eclipse.osgi 2 1 2021-01-25 10:33:26.809
+!MESSAGE NLS unused message: RecentWorkspacesPreferencePage_PromptAtStartup_label in: org.eclipse.ui.internal.ide.messages
+
+!ENTRY org.eclipse.osgi 2 1 2021-01-25 10:33:26.809
+!MESSAGE NLS unused message: RecentWorkspacesPreferencePage_RemoveButton_label in: org.eclipse.ui.internal.ide.messages
+
+!ENTRY org.eclipse.osgi 2 1 2021-01-25 10:33:28.658
+!MESSAGE NLS unused message: url_couldNotResolve_projectDoesNotExist in: org.eclipse.core.internal.utils.messages
+
+!ENTRY org.eclipse.core.resources 2 10035 2021-01-25 10:33:28.768
+!MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes.
+
+!ENTRY org.eclipse.osgi 2 1 2021-01-25 10:33:29.158
+!MESSAGE NLS unused message: Shortcuts_shortcutTab in: org.eclipse.ui.internal.messages
+
+!ENTRY org.eclipse.osgi 2 1 2021-01-25 10:33:29.158
+!MESSAGE NLS unused message: Shortcuts_selectShortcutsLabel in: org.eclipse.ui.internal.messages
+
+!ENTRY org.eclipse.osgi 2 1 2021-01-25 10:33:29.158
+!MESSAGE NLS unused message: Shortcuts_availableMenus in: org.eclipse.ui.internal.messages
+
+!ENTRY org.eclipse.osgi 2 1 2021-01-25 10:33:29.158
+!MESSAGE NLS unused message: Shortcuts_availableCategories in: org.eclipse.ui.internal.messages
+
+!ENTRY org.eclipse.osgi 2 1 2021-01-25 10:33:29.158
+!MESSAGE NLS unused message: Shortcuts_allShortcuts in: org.eclipse.ui.internal.messages
+
+!ENTRY org.eclipse.osgi 2 1 2021-01-25 10:33:29.158
+!MESSAGE NLS unused message: Util_listNull in: org.eclipse.ui.internal.messages
+
+!ENTRY org.eclipse.osgi 2 1 2021-01-25 10:33:29.158
+!MESSAGE NLS unused message: OpenBrowserHandler_NoInfoDialogTitle in: org.eclipse.ui.internal.messages
+
+!ENTRY org.eclipse.osgi 2 1 2021-01-25 10:33:29.158
+!MESSAGE NLS unused message: AboutFeaturesDialog_SimpleTitle in: org.eclipse.ui.internal.messages
+
+!ENTRY org.eclipse.osgi 2 1 2021-01-25 10:33:34.080
+!MESSAGE NLS unused message: BinaryDumpHandler_1 in: com.tomato.exerd.handler.messages
+
+!ENTRY org.eclipse.osgi 2 1 2021-01-25 10:33:34.080
+!MESSAGE NLS unused message: ConvertToXMLHandler_1 in: com.tomato.exerd.handler.messages
+
+!ENTRY org.eclipse.osgi 2 1 2021-01-25 10:33:34.080
+!MESSAGE NLS unused message: SelectHandler_11 in: com.tomato.exerd.handler.messages
+
+!ENTRY org.eclipse.osgi 2 1 2021-01-25 10:33:34.080
+!MESSAGE NLS unused message: ToggleColumnVisibilityHandler_4 in: com.tomato.exerd.handler.messages
+
+!ENTRY org.eclipse.osgi 2 1 2021-01-25 10:33:34.080
+!MESSAGE NLS unused message: ToggleColumnVisibilityHandler_5 in: com.tomato.exerd.handler.messages

+ 17 - 10
산출물/3.설계/ERD/.metadata/.plugins/com.tomato.exerd.core/dialog_settings.xml

@@ -3,51 +3,58 @@
 	<section name="com.tomato.exerd.handler.DiagramSelectDialog">
 		<item value="400" key="DIALOG_WIDTH"/>
 		<item value="588" key="DIALOG_Y_ORIGIN"/>
-		<item value="300" key="DIALOG_HEIGHT"/>
 		<item value="1088" key="DIALOG_X_ORIGIN"/>
+		<item value="300" key="DIALOG_HEIGHT"/>
 		<item value="1|맑은 고딕|9.0|0|WINDOWS|1|-12|0|0|0|400|0|0|0|1|0|0|0|0|맑은 고딕" key="DIALOG_FONT_NAME"/>
 	</section>
 	<section name="com.tomato.exerd.handler.Helper.FindTableDialog2">
 		<item value="" key="history"/>
 		<item value="744" key="DIALOG_WIDTH"/>
 		<item value="613" key="DIALOG_Y_ORIGIN"/>
-		<item value="1174" key="DIALOG_X_ORIGIN"/>
 		<item value="428" key="DIALOG_HEIGHT"/>
+		<item value="1174" key="DIALOG_X_ORIGIN"/>
 		<item value="1|맑은 고딕|9.0|0|WINDOWS|1|-12|0|0|0|400|0|0|0|1|0|0|0|0|맑은 고딕" key="DIALOG_FONT_NAME"/>
 	</section>
 	<section name="com.tomato.exerd.export.ModelExportWizardDialog">
 		<item value="701" key="DIALOG_WIDTH"/>
 		<item value="" key="destinationPath"/>
 		<item value="342" key="DIALOG_Y_ORIGIN"/>
-		<item value="테이블 정의서 HTML(기본)" key="lastUsedTemplateName"/>
-		<item value="938" key="DIALOG_X_ORIGIN"/>
 		<item value="670" key="DIALOG_HEIGHT"/>
+		<item value="938" key="DIALOG_X_ORIGIN"/>
+		<item value="테이블 정의서 HTML(기본)" key="lastUsedTemplateName"/>
 		<item value="file" key="sendType"/>
 		<item value="1|맑은 고딕|9.0|0|WINDOWS|1|-12|0|0|0|400|0|0|0|1|0|0|0|0|맑은 고딕" key="DIALOG_FONT_NAME"/>
 	</section>
-	<section name="solutionSelectionDialog">
-		<item value="1" key="applyScope"/>
-	</section>
 	<section name="com.tomato.exerd.print.PrintSettingsEditorDialog">
 		<item value="721" key="DIALOG_WIDTH"/>
 		<item value="374" key="DIALOG_Y_ORIGIN"/>
-		<item value="621" key="DIALOG_HEIGHT"/>
 		<item value="928" key="DIALOG_X_ORIGIN"/>
+		<item value="621" key="DIALOG_HEIGHT"/>
 		<item value="1|맑은 고딕|9.0|0|WINDOWS|1|-12|0|0|0|400|0|0|0|1|0|0|0|0|맑은 고딕" key="DIALOG_FONT_NAME"/>
 	</section>
+	<section name="solutionSelectionDialog">
+		<item value="1" key="applyScope"/>
+	</section>
 	<section name="com.tomato.exerd.export.ExportModelWizard">
 		<list key="templateContents">
 		</list>
 		<list key="templateNames">
 		</list>
 	</section>
-	<section name="solution">
+	<section name="com.tomato.exerd.domain.internal.FindDomainDialog">
+		<item value="228" key="DIALOG_WIDTH"/>
+		<item value="533" key="DIALOG_Y_ORIGIN"/>
+		<item value="263" key="DIALOG_HEIGHT"/>
+		<item value="1174" key="DIALOG_X_ORIGIN"/>
+		<item value="1|맑은 고딕|9.0|0|WINDOWS|1|-12|0|0|0|400|0|0|0|1|0|0|0|0|맑은 고딕" key="DIALOG_FONT_NAME"/>
 	</section>
 	<section name="com.tomato.exerd.handler.Helper.DiagramOrderEditor">
 		<item value="350" key="DIALOG_WIDTH"/>
 		<item value="486" key="DIALOG_Y_ORIGIN"/>
-		<item value="1113" key="DIALOG_X_ORIGIN"/>
 		<item value="453" key="DIALOG_HEIGHT"/>
+		<item value="1113" key="DIALOG_X_ORIGIN"/>
 		<item value="1|맑은 고딕|9.0|0|WINDOWS|1|-12|0|0|0|400|0|0|0|1|0|0|0|0|맑은 고딕" key="DIALOG_FONT_NAME"/>
 	</section>
+	<section name="solution">
+	</section>
 </section>

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


BIN
산출물/3.설계/ERD/.metadata/.plugins/org.eclipse.core.resources/.root/51.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


+ 1 - 1
산출물/3.설계/ERD/.metadata/.plugins/org.eclipse.ui.ide/dialog_settings.xml

@@ -7,8 +7,8 @@
 	<section name="SaveAsDialogSettings">
 		<item value="525" key="DIALOG_WIDTH"/>
 		<item value="-51" key="DIALOG_Y_ORIGIN"/>
-		<item value="580" key="DIALOG_HEIGHT"/>
 		<item value="88" key="DIALOG_X_ORIGIN"/>
+		<item value="580" key="DIALOG_HEIGHT"/>
 		<item value="1|맑은 고딕|9.0|0|WINDOWS|1|-12|0|0|0|400|0|0|0|1|0|0|0|0|맑은 고딕" key="DIALOG_FONT_NAME"/>
 	</section>
 </section>

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

@@ -121,7 +121,7 @@
 </folder>
 </info>
 <info part="org.eclipse.ui.editorss" ratio="0.13299333" ratioLeft="339" ratioRight="2210" relationship="2" relative="leftFolder"/>
-<info folder="true" part="org.eclipse.ui.internal.ViewStack@12f529b" ratio="0.88627094" ratioLeft="1956" ratioRight="251" relationship="2" relative="org.eclipse.ui.editorss">
+<info folder="true" part="org.eclipse.ui.internal.ViewStack@12f529b" ratio="0.87222475" ratioLeft="1925" ratioRight="282" relationship="2" relative="org.eclipse.ui.editorss">
 <folder activePageID="com.tomato.exerd.ui.views.thumbnail" appearance="2" expanded="2">
 <page content="com.tomato.exerd.ui.views.thumbnail" label="썸네일"/>
 <presentation id="org.eclipse.ui.presentations.WorkbenchPresentationFactory">
@@ -170,61 +170,62 @@
 <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/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"/>
 <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"/>
+<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"/>
 </editors>
-<item historyLabel="ST24.exerd" index="0"/>
 <item historyLabel="iSTYLE24_Mall.exerd" index="1"/>
 <item historyLabel="ST24.exerd" index="0"/>
-<item historyLabel="iSTYLE24_Mall.exerd" index="2"/>
-<item historyLabel="ST24.exerd" index="0"/>
-<item historyLabel="iSTYLE24_Mall.exerd" index="2"/>
-<item historyLabel="ST24.exerd" index="0"/>
-<item historyLabel="iSTYLE24_Mall.exerd" index="2"/>
-<item historyLabel="ST24.exerd" index="0"/>
-<item historyLabel="iSTYLE24_Mall.exerd" index="2"/>
-<item historyLabel="ST24.exerd" index="0"/>
-<item historyLabel="iSTYLE24_Mall.exerd" index="2"/>
-<item historyLabel="ST24.exerd" index="0"/>
-<item historyLabel="iSTYLE24_Mall.exerd" index="2"/>
-<item historyLabel="ST24.exerd" index="0"/>
-<item historyLabel="iSTYLE24_Mall.exerd" index="2"/>
-<item historyLabel="ST24.exerd" index="0"/>
-<item historyLabel="iSTYLE24_Mall.exerd" index="2"/>
-<item historyLabel="ST24.exerd" index="0"/>
-<item historyLabel="iSTYLE24_Mall.exerd" index="2"/>
-<item historyLabel="ST24.exerd" index="0"/>
-<item historyLabel="iSTYLE24_Mall.exerd" index="2"/>
-<item historyLabel="ST24.exerd" index="0"/>
-<item historyLabel="iSTYLE24_Mall.exerd" index="2"/>
-<item historyLabel="ST24.exerd" index="0"/>
-<item historyLabel="iSTYLE24_Mall.exerd" index="2"/>
+<item historyLabel="iSTYLE24_Mall.exerd" index="1"/>
 <item historyLabel="ST24.exerd" index="0"/>
-<item historyLabel="iSTYLE24_Mall.exerd" index="2"/>
+<item historyLabel="iSTYLE24_Mall.exerd" index="1"/>
 <item historyLabel="ST24.exerd" index="0"/>
 <item historyLabel="iSTYLE24_Mall.exerd" index="2"/>
-<item historyLabel="ST24.exerd" index="0"/>
-<item historyLabel="iSTYLE24_Mall.exerd" index="3"/>
-<item historyLabel="ST24.exerd" index="4"/>
+<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="4"/>
+<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="4"/>
+<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="4"/>
+<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="4"/>
+<item historyLabel="ST24.exerd" index="3"/>
+<item historyLabel="iSTYLE24_Mall.exerd" index="5"/>
+<item historyLabel="ST24.exerd" index="6"/>
+<item historyLabel="iSTYLE24_Mall.exerd" index="5"/>
+<item historyLabel="ST24.exerd" index="6"/>
+<item historyLabel="iSTYLE24_Mall.exerd" index="5"/>
+<item historyLabel="ST24.exerd" index="6"/>
+<item historyLabel="iSTYLE24_Mall.exerd" index="5"/>
+<item historyLabel="ST24.exerd" index="6"/>
 <item historyLabel="iSTYLE24_Mall.exerd" index="5"/>
-<item historyLabel="ST24.exerd" index="4"/>
+<item historyLabel="ST24.exerd" index="6"/>
 <item historyLabel="iSTYLE24_Mall.exerd" index="5"/>
-<item historyLabel="ST24.exerd" index="4"/>
+<item historyLabel="ST24.exerd" index="6"/>
 <item historyLabel="iSTYLE24_Mall.exerd" index="5"/>
-<item historyLabel="ST24.exerd" index="4"/>
+<item historyLabel="ST24.exerd" index="6"/>
 <item historyLabel="iSTYLE24_Mall.exerd" index="5"/>
-<item historyLabel="ST24.exerd" index="4"/>
+<item historyLabel="ST24.exerd" index="6"/>
+<item historyLabel="iSTYLE24_Wms.exerd" index="7"/>
 <item historyLabel="iSTYLE24_Mall.exerd" index="5"/>
-<item historyLabel="ST24.exerd" index="4"/>
+<item historyLabel="ST24.exerd" index="6"/>
 <item historyLabel="iSTYLE24_Mall.exerd" index="5"/>
-<item historyLabel="ST24.exerd" index="4"/>
+<item historyLabel="ST24.exerd" index="6"/>
 <item historyLabel="iSTYLE24_Mall.exerd" index="5"/>
-<item historyLabel="ST24.exerd" index="4"/>
+<item historyLabel="ST24.exerd" index="6"/>
 <item historyLabel="iSTYLE24_Mall.exerd" index="5"/>
-<item historyLabel="ST24.exerd" index="4"/>
-<item active="true" historyLabel="iSTYLE24_Mall.exerd" index="6"/>
+<item historyLabel="ST24.exerd" index="6"/>
+<item active="true" historyLabel="iSTYLE24_Mall.exerd" index="5"/>
 </navigationHistory>
 <input factoryID="org.eclipse.ui.internal.model.ResourceFactory" path="/" type="8"/>
 </page>

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


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