From 1b4320af3b84acae50991617f30f2b0752b583ba Mon Sep 17 00:00:00 2001
From: WYH <1>
Date: 星期四, 19 十月 2023 19:55:27 +0800
Subject: [PATCH] 提交

---
 developmentDoc/src/pdm/business/1                       |    3 
 developmentDoc/src/file/适配总结和记录.zip                     |    0 
 developmentDoc/src/pdm/business/集中培训运行管理系统-20231015.pdm | 8522 ++++++++++++++++++++++++++++++++++++++++++++++++++++++---
 developmentDoc/src/file/适配总结.txt                        |  212 +
 4 files changed, 8,156 insertions(+), 581 deletions(-)

diff --git "a/developmentDoc/src/file/\351\200\202\351\205\215\346\200\273\347\273\223.txt" "b/developmentDoc/src/file/\351\200\202\351\205\215\346\200\273\347\273\223.txt"
new file mode 100644
index 0000000..e4be566
--- /dev/null
+++ "b/developmentDoc/src/file/\351\200\202\351\205\215\346\200\273\347\273\223.txt"
@@ -0,0 +1,212 @@
+
+postgreSQL涓嬭浇鍦板潃:鐩墠寮�婧愮殑TBase鐗堟湰鏄熀浜巔ostgreSQL10鐨�
+https://www.enterprisedb.com/downloads/postgres-postgreSQL-downloads
+
+
+瀹夎鏁欑▼
+https://blog.csdn.net/engerla/article/details/127820191
+
+postgreSQL寤鸿〃绀轰緥锛�
+	CREATE TABLE "evaluation_records" (
+		"id" int8 NOT NULL,
+		"name" varchar(255) COLLATE "default" DEFAULT NULL::character varying,
+		"evaluation_score" int4,
+		"evaluation_date" date,
+		"evaluation_content" text COLLATE "default",
+		"attendance_probability" float4,
+		"status" int2 DEFAULT 0,
+		"remark" varchar(500) COLLATE "default" DEFAULT NULL::character varying,
+		"creator" varchar(32) COLLATE "default" DEFAULT NULL::character varying,
+		"updater" varchar(32) COLLATE "default" DEFAULT NULL::character varying,
+		"create_time" timestamp(6) DEFAULT CURRENT_TIMESTAMP NOT NULL,
+		"update_time" timestamp(6),
+		PRIMARY KEY ("id")
+	);
+	COMMENT ON TABLE "evaluation_records" IS '璇勪环璁板綍琛�';
+
+	COMMENT ON COLUMN "evaluation_records"."id"                     IS '涓婚敭';
+	COMMENT ON COLUMN "evaluation_records"."name"                   IS '濮撳悕';
+	COMMENT ON COLUMN "evaluation_records"."evaluation_score"       IS '璇勪环鍒嗘暟';
+	COMMENT ON COLUMN "evaluation_records"."evaluation_date"        IS '璇勪环鏃ユ湡';
+	COMMENT ON COLUMN "evaluation_records"."evaluation_content" 	IS '璇勪环鍐呭锛氬瘜鏂囨湰';
+	COMMENT ON COLUMN "evaluation_records"."attendance_probability" IS '鍑哄嫟鐜�';
+	COMMENT ON COLUMN "evaluation_records"."status"                 IS '鐘舵��: 0-鍒犻櫎,1-鏈夋晥';
+	COMMENT ON COLUMN "evaluation_records"."remark"                 IS '澶囨敞';
+	COMMENT ON COLUMN "evaluation_records"."creator"                IS '鍒涘缓浜�';
+	COMMENT ON COLUMN "evaluation_records"."updater"                IS '鏇存柊浜�';
+	COMMENT ON COLUMN "evaluation_records"."create_time"            IS '鍒涘缓鏃堕棿';
+	COMMENT ON COLUMN "evaluation_records"."update_time"            IS '鏇存柊鏃堕棿';
+
+寤鸿〃娉ㄦ剰浜嬮」锛�
+	寤鸿琛ㄥ悕鍜屽瓧娈靛悕閮界粺涓�涓哄皬鍐欙紒鍥犱负鍦╬ostgreSQL涓煡璇㈢殑鏃跺�欏繀椤诲澶у啓瀛楁娣诲姞鍙屽紩鍙锋墠鑳芥墽琛岋紝渚嬪锛歋ELECT * from train_toolkit_quartz WHERE "STATE" = 1;
+	涓ゅ紶鍏宠仈琛紝鍏宠仈瀛楁鐨勫瓧娈电被鍨嬩竴瀹氳淇濇寔涓�鑷达紒鍚﹀垯锛屽叧鑱旀煡璇㈢殑鏃跺�檖ostgreSQL浼氭姤閿欙紒
+	
+	甯哥敤瀛楁绫诲瀷瀵瑰簲鍏崇郴锛�
+		int8			瀵瑰簲mysql涓殑 bigint
+		int4			瀵瑰簲mysql涓殑 int
+		int2			瀵瑰簲mysql涓殑 smallint
+		longtext		瀵瑰簲mysql涓殑 text
+		timestamp(6)	瀵瑰簲mysql涓殑 datetime
+		date			瀵瑰簲mysql涓殑 date
+
+	mysql寤鸿〃璇彞锛岀ず渚嬶細
+	CREATE TABLE `evaluation_records` (
+		`id` bigint(20) NOT NULL COMMENT '涓婚敭',
+		`name` varchar(255) DEFAULT NULL COMMENT '濮撳悕',
+		`evaluation_score` int(3) DEFAULT NULL COMMENT '璇勪环鍒嗘暟',
+		`evaluation_date` date DEFAULT NULL COMMENT '璇勪环鏃ユ湡',
+		`evaluation_content` longtext COMMENT '璇勪环鍐呭锛氬瘜鏂囨湰',
+		`attendance_probability` double(2,2) DEFAULT NULL COMMENT '鍑哄嫟鐜�',
+		`status` smallint(1) NOT NULL DEFAULT '0' COMMENT '鐘舵��: 0-鍒犻櫎,1-鏈夋晥',
+		`remark` varchar(500) DEFAULT NULL COMMENT '澶囨敞',
+		`creator` varchar(32) DEFAULT NULL COMMENT '鍒涘缓浜�',
+		`updater` varchar(32) DEFAULT NULL COMMENT '鏇存柊浜�',
+		`create_time` datetime DEFAULT NULL COMMENT '鍒涘缓鏃堕棿',
+		`update_time` datetime DEFAULT NULL COMMENT '鏇存柊鏃堕棿',
+		PRIMARY KEY (`id`) 
+	) COMMENT='璇勪环璁板綍琛�';
+	
+鎻掑叆鏁版嵁锛�
+	-- 閫氱敤鍐欐硶
+	INSERT INTO evaluation_records VALUES ('713503081040800400', '寮犱笁', '10', '2023-09-15', '<p>璇勪环渚濇嵁锛歑XX</p>', '0.89', '1', NULL, '000018e30cce41eea59765009e413f82', NULL, '2023-09-15 18:45:11', NULL);
+	-- mysql
+	INSERT INTO `evaluation_records` VALUES ('713503081040800400', '寮犱笁', '10', '2023-09-15', '<p>璇勪环渚濇嵁锛歑XX</p>', '0.89', '1', NULL, '000018e30cce41eea59765009e413f82', NULL, '2023-09-15 18:45:11', NULL);
+	-- postgreSQL
+	INSERT INTO "evaluation_records" VALUES ('713503081040800400', '寮犱笁', '10', '2023-09-15', '<p>璇勪环渚濇嵁锛歑XX</p>', '0.89', '1', NULL, '000018e30cce41eea59765009e413f82', NULL, '2023-09-15 18:45:11', NULL);
+
+淇敼鏁版嵁
+	-- 閫氱敤鍐欐硶
+	UPDATE evaluation_records SET name='鏉庡洓' WHERE id='713503081040800400';
+
+鏌ヨ鏁版嵁锛�
+	-- 閫氱敤鍐欐硶
+	SELECT * FROM evaluation_records WHERE name='鏉庡洓';
+	
+	-- 閫氱敤鍐欐硶锛欰S鍏抽敭瀛�
+	SELECT name,evaluation_score AS "evaluationScore" FROM evaluation_records WHERE name='鏉庡洓';
+	
+	-- 閫氱敤鍐欐硶锛氭椂闂寸瓑浜�
+	SELECT * FROM evaluation_records WHERE create_time = '2023-09-15 18:45:11';
+		
+	-- 閫氱敤鍐欐硶锛氭椂闂村尯闂�
+	SELECT * FROM evaluation_records WHERE create_time between '2023-09-15' and '2023-09-16';
+	
+鍒犻櫎鏁版嵁锛�
+	-- 閫氱敤鍐欐硶
+	DELETE FROM evaluation_records WHERE id='713503081040800400';
+
+鍒涘缓绱㈠紩锛�
+	-- 鏅�氱储寮曪紝閫氱敤鍐欐硶
+	CREATE INDEX idx_name_score ON evaluation_records(name,evaluation_score);
+	-- 鍞竴绱㈠紩锛岄�氱敤鍐欐硶
+	CREATE UNIQUE INDEX idx_status ON evaluation_records(status);
+
+鍒嗛〉锛�
+	-- postgreSQL鍒嗛〉
+	SELECT
+		id,
+		type,
+		name,
+		code,
+		pid,
+		remark
+	FROM
+		sys_org
+	WHERE
+		type = 1
+	AND pid = 1323441314737557510
+	ORDER BY state DESC,seq ASC
+	-- 浠庣0鏉″紑濮嬶紝妫�绱�10鏉�
+	OFFSET 0 LIMIT 10 
+	
+	-- mysql鍒嗛〉
+	SELECT
+		id,
+		type,
+		name,
+		code,
+		pid,
+		remark
+	FROM
+		sys_org
+	WHERE
+		type = 1
+	AND pid = 1323441314737557510
+	ORDER BY state DESC,seq ASC
+	-- 浠庣0鏉″紑濮嬶紝妫�绱�10鏉�
+	LIMIT 0,10
+	
+	
+甯哥敤鍑芥暟瀵瑰簲鍏崇郴锛�
+	<> 															瀵瑰簲mysql涓殑 !=
+	
+	OR 															瀵瑰簲mysql涓殑 ||
+	
+	TO_CHAR() 													瀵瑰簲mysql涓殑 DATE_FORMAT()
+	
+	yyyy-mm-dd hh24:mi:ss 										瀵瑰簲mysql涓殑 %Y-%m-%d %H:%i:%S
+	
+	DATE() 														瀵瑰簲mysql涓殑 DAY()
+	
+	CURRENT_DATE 												瀵瑰簲mysql涓殑 CURDATE()
+	
+	CASE WHEN type=1 THEN 1 ELSE 0 END							瀵瑰簲mysql涓殑 IF(type=1,1,0) 澶囨敞锛宼ype涓哄瓧娈靛悕绉�
+	
+	COALESCE() 													瀵瑰簲mysql涓殑 IFNULL()
+	
+	CONCAT(瀛楁1,'鍒嗛殧绗�',瀛楁2)) 								瀵瑰簲mysql涓殑 CONCAT(瀛楁1,"鍒嗛殧绗�",瀛楁2))
+	
+	STRING_AGG(瀛楁鍚嶇О,',') 									瀵瑰簲mysql涓殑 GROUP_CONCAT(瀛楁鍚嶇О)
+	
+	涓嶆敮鎸乵ysql涓殑鏃堕棿宸绠楀嚱鏁癟IMESTAMPDIFF()
+	
+	GROUP BY鍑芥暟锛�
+		-- postgreSQL鍐欐硶
+		SELECT
+			tfs.name,
+			tfs.total_num 
+		FROM
+			train_fixed_assets tfs
+		GROUP BY tfs.name,tfs.total_num  
+		ORDER BY tfs.total_num DESC		
+		
+		-- mysql鍐欐硶
+		SELECT
+			tfs.name,
+			tfs.total_num 
+		FROM
+			train_fixed_assets tfs
+		GROUP BY tfs.name 
+		ORDER BY tfs.total_num DESC		
+		
+		
+閽堝xxMapper.xml鏂囦欢锛�
+		-- postgreSQL鍐欐硶锛氫竾涓囦笉鍙渷鐣S鍏抽敭瀛楋紒
+		SELECT name,evaluation_score AS "evaluationScore" FROM evaluation_records
+		<WHERE>
+			status = 1
+			<if test="creator!=null">
+				and creator = #{creator}
+			</if>
+			<if test="startTime!=null">
+				and to_char(create_time,'yyyy-mm-dd hh24:mi:ss') <![CDATA[ >= ]]> #{startTime}
+			</if>
+			<if test="endTime!=null">
+				and to_char(create_time,'yyyy-mm-dd hh24:mi:ss') <![CDATA[ <= ]]> #{endTime}
+			</if>
+		</WHERE>
+		
+		-- mysql鍐欐硶
+		SELECT name,evaluation_score 'evaluationScore' FROM evaluation_records
+		<WHERE>
+			status = 1
+			<if test="creator!=null">
+				and creator = #{creator}
+			</if>
+			<if test="startTime!=null">
+				and DATE_FORMAT(create_time,'%Y-%m-%d %H:%i:%S') <![CDATA[ >= ]]> DATE_FORMAT(#{startTime},'%Y-%m-%d %H:%i:%S')
+			</if>
+			<if test="endTime!=null">
+				and DATE_FORMAT(create_time,'%Y-%m-%d %H:%i:%S') <![CDATA[ <= ]]> DATE_FORMAT(#{endTime},'%Y-%m-%d %H:%i:%S')
+			</if>
+		</WHERE>
\ No newline at end of file
diff --git "a/developmentDoc/src/file/\351\200\202\351\205\215\346\200\273\347\273\223\345\222\214\350\256\260\345\275\225.zip" "b/developmentDoc/src/file/\351\200\202\351\205\215\346\200\273\347\273\223\345\222\214\350\256\260\345\275\225.zip"
new file mode 100644
index 0000000..e3c88ac
--- /dev/null
+++ "b/developmentDoc/src/file/\351\200\202\351\205\215\346\200\273\347\273\223\345\222\214\350\256\260\345\275\225.zip"
Binary files differ
diff --git a/developmentDoc/src/pdm/business/1 b/developmentDoc/src/pdm/business/1
index 7747ed0..e0c7208 100644
--- a/developmentDoc/src/pdm/business/1
+++ b/developmentDoc/src/pdm/business/1
@@ -34,3 +34,6 @@
 item_id
 class_info_id
 last_update_time
+
+
+tr_course_info
diff --git "a/developmentDoc/src/pdm/business/\351\233\206\344\270\255\345\237\271\350\256\255\350\277\220\350\241\214\347\256\241\347\220\206\347\263\273\347\273\237-20231015.pdm" "b/developmentDoc/src/pdm/business/\351\233\206\344\270\255\345\237\271\350\256\255\350\277\220\350\241\214\347\256\241\347\220\206\347\263\273\347\273\237-20231015.pdm"
index 43779a8..2adcd23 100644
--- "a/developmentDoc/src/pdm/business/\351\233\206\344\270\255\345\237\271\350\256\255\350\277\220\350\241\214\347\256\241\347\220\206\347\263\273\347\273\237-20231015.pdm"
+++ "b/developmentDoc/src/pdm/business/\351\233\206\344\270\255\345\237\271\350\256\255\350\277\220\350\241\214\347\256\241\347\220\206\347\263\273\347\273\237-20231015.pdm"
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<?PowerDesigner AppLocale="UTF16" ID="{FDB182A9-5301-43B6-BE6D-A8481D51F4D0}" Label="" LastModificationDate="1697529893" Name="闆嗕腑鍩硅杩愯绠$悊绯荤粺" Objects="954" Symbols="122" Target="PostgreSQL 8" Type="{CDE44E21-9669-11D1-9914-006097355D9B}" signature="PDM_DATA_MODEL_XML" version="15.1.0.2850"?>
+<?PowerDesigner AppLocale="UTF16" ID="{FDB182A9-5301-43B6-BE6D-A8481D51F4D0}" Label="" LastModificationDate="1697715128" Name="闆嗕腑鍩硅杩愯绠$悊绯荤粺" Objects="1222" Symbols="144" Target="PostgreSQL 8" Type="{CDE44E21-9669-11D1-9914-006097355D9B}" signature="PDM_DATA_MODEL_XML" version="15.1.0.2850"?>
 <!-- do not edit this file -->
 
 <Model xmlns:a="attribute" xmlns:c="collection" xmlns:o="object">
@@ -12,7 +12,7 @@
 <a:Code>闆嗕腑鍩硅杩愯绠$悊绯荤粺</a:Code>
 <a:CreationDate>1427332390</a:CreationDate>
 <a:Creator>Administrator</a:Creator>
-<a:ModificationDate>1697269443</a:ModificationDate>
+<a:ModificationDate>1697635439</a:ModificationDate>
 <a:Modifier>WYH</a:Modifier>
 <a:PackageOptionsText>[FolderOptions]
 
@@ -91,7 +91,7 @@
 GenPathName=C:\Users\Administrator\Desktop\
 GenSingleFile=Yes
 GenODBC=No
-GenCheckModel=Yes
+GenCheckModel=No
 GenScriptPrev=Yes
 GenArchiveModel=No
 GenUseSync=No
@@ -1867,7 +1867,7 @@
 
 [ModelOptions\Physical Objects\ClssNamingOptions\TABL\Code]
 Template=
-MaxLen=64
+MaxLen=100
 Case=M
 ValidChar=
 InvldChar=
@@ -4947,7 +4947,7 @@
 <o:ReferenceSymbol Id="o52">
 <a:CreationDate>1696663492</a:CreationDate>
 <a:ModificationDate>1696734180</a:ModificationDate>
-<a:Rect>((-7845,2340), (-7395,9360))</a:Rect>
+<a:Rect>((-8150,2340), (-7150,9360))</a:Rect>
 <a:ListOfPoints>((-7680,9360),(-7680,4510),(-7620,4510),(-7620,2340))</a:ListOfPoints>
 <a:CornerStyle>1</a:CornerStyle>
 <a:ArrowStyle>1</a:ArrowStyle>
@@ -4969,7 +4969,7 @@
 <o:ReferenceSymbol Id="o56">
 <a:CreationDate>1696663589</a:CreationDate>
 <a:ModificationDate>1696734180</a:ModificationDate>
-<a:Rect>((8805,-14400), (12690,5360))</a:Rect>
+<a:Rect>((9030,-14400), (12690,5360))</a:Rect>
 <a:ListOfPoints>((9750,-7860),(12690,-7860),(12690,5360),(9030,5360),(9030,-14400))</a:ListOfPoints>
 <a:CornerStyle>1</a:CornerStyle>
 <a:ArrowStyle>1</a:ArrowStyle>
@@ -8311,7 +8311,7 @@
 <o:ReferenceSymbol Id="o224">
 <a:CreationDate>1696656700</a:CreationDate>
 <a:ModificationDate>1696656700</a:ModificationDate>
-<a:Rect>((-24360,-18549), (-4469,4502))</a:Rect>
+<a:Rect>((-24135,-18549), (-4469,4502))</a:Rect>
 <a:ListOfPoints>((-4469,4502),(-4469,-2709),(-24135,-2709),(-24135,-18549))</a:ListOfPoints>
 <a:CornerStyle>1</a:CornerStyle>
 <a:ArrowStyle>1</a:ArrowStyle>
@@ -8333,7 +8333,7 @@
 <o:ReferenceSymbol Id="o227">
 <a:CreationDate>1696656700</a:CreationDate>
 <a:ModificationDate>1696656700</a:ModificationDate>
-<a:Rect>((-52155,-38102), (-38053,-22308))</a:Rect>
+<a:Rect>((-52155,-37877), (-38053,-22308))</a:Rect>
 <a:ListOfPoints>((-38053,-22308),(-40687,-22308),(-40687,-24133),(-52155,-24133),(-52155,-37877),(-38053,-37877))</a:ListOfPoints>
 <a:CornerStyle>1</a:CornerStyle>
 <a:ArrowStyle>1</a:ArrowStyle>
@@ -8355,7 +8355,7 @@
 <o:ReferenceSymbol Id="o229">
 <a:CreationDate>1696656700</a:CreationDate>
 <a:ModificationDate>1696656700</a:ModificationDate>
-<a:Rect>((-6973,-24437), (22637,-12133))</a:Rect>
+<a:Rect>((-6748,-24437), (22637,-12133))</a:Rect>
 <a:ListOfPoints>((22637,-12133),(-6748,-12133),(-6748,-24437))</a:ListOfPoints>
 <a:CornerStyle>1</a:CornerStyle>
 <a:ArrowStyle>1</a:ArrowStyle>
@@ -8377,7 +8377,7 @@
 <o:ReferenceSymbol Id="o232">
 <a:CreationDate>1696656700</a:CreationDate>
 <a:ModificationDate>1696656700</a:ModificationDate>
-<a:Rect>((-36172,16035), (-14443,39913))</a:Rect>
+<a:Rect>((-35947,16035), (-14443,39913))</a:Rect>
 <a:ListOfPoints>((-14443,39913),(-35947,39913),(-35947,16035))</a:ListOfPoints>
 <a:CornerStyle>1</a:CornerStyle>
 <a:ArrowStyle>1</a:ArrowStyle>
@@ -8399,7 +8399,7 @@
 <o:ReferenceSymbol Id="o235">
 <a:CreationDate>1696656700</a:CreationDate>
 <a:ModificationDate>1696656700</a:ModificationDate>
-<a:Rect>((15324,-9807), (40381,39856))</a:Rect>
+<a:Rect>((15324,-9582), (40381,39856))</a:Rect>
 <a:ListOfPoints>((15324,39856),(15324,-9582),(40381,-9582))</a:ListOfPoints>
 <a:CornerStyle>1</a:CornerStyle>
 <a:ArrowStyle>1</a:ArrowStyle>
@@ -8421,7 +8421,7 @@
 <o:ReferenceSymbol Id="o237">
 <a:CreationDate>1696656700</a:CreationDate>
 <a:ModificationDate>1696656700</a:ModificationDate>
-<a:Rect>((-8593,-44709), (23210,-30219))</a:Rect>
+<a:Rect>((-8593,-44484), (23210,-30219))</a:Rect>
 <a:ListOfPoints>((-8593,-30219),(-8593,-44484),(23210,-44484))</a:ListOfPoints>
 <a:CornerStyle>1</a:CornerStyle>
 <a:ArrowStyle>1</a:ArrowStyle>
@@ -8443,7 +8443,7 @@
 <o:ReferenceSymbol Id="o240">
 <a:CreationDate>1696656700</a:CreationDate>
 <a:ModificationDate>1696656700</a:ModificationDate>
-<a:Rect>((-17012,-51373), (24145,-39339))</a:Rect>
+<a:Rect>((-17012,-51148), (24145,-39339))</a:Rect>
 <a:ListOfPoints>((-17012,-39339),(-17012,-51148),(24145,-51148))</a:ListOfPoints>
 <a:CornerStyle>1</a:CornerStyle>
 <a:ArrowStyle>1</a:ArrowStyle>
@@ -8465,7 +8465,7 @@
 <o:ReferenceSymbol Id="o242">
 <a:CreationDate>1696656700</a:CreationDate>
 <a:ModificationDate>1696656700</a:ModificationDate>
-<a:Rect>((-23676,-55232), (22625,-39690))</a:Rect>
+<a:Rect>((-23676,-55007), (22625,-39690))</a:Rect>
 <a:ListOfPoints>((-23676,-39690),(-23676,-55007),(22625,-55007))</a:ListOfPoints>
 <a:CornerStyle>1</a:CornerStyle>
 <a:ArrowStyle>1</a:ArrowStyle>
@@ -14423,7 +14423,7 @@
 <a:ArrowStyle>8</a:ArrowStyle>
 <a:LineColor>16744576</a:LineColor>
 <a:ShadowColor>12632256</a:ShadowColor>
-<a:FontList>CENTER 0 鏂板畫浣�,8,N</a:FontList>
+<a:FontList>OBJXSTR 0 Arial,8,N</a:FontList>
 <c:SourceSymbol>
 <o:TableSymbol Ref="o469"/>
 </c:SourceSymbol>
@@ -14443,7 +14443,7 @@
 <a:ArrowStyle>8</a:ArrowStyle>
 <a:LineColor>16744576</a:LineColor>
 <a:ShadowColor>12632256</a:ShadowColor>
-<a:FontList>CENTER 0 鏂板畫浣�,8,N</a:FontList>
+<a:FontList>OBJXSTR 0 Arial,8,N</a:FontList>
 <c:SourceSymbol>
 <o:TableSymbol Ref="o473"/>
 </c:SourceSymbol>
@@ -14483,7 +14483,7 @@
 <a:ArrowStyle>8</a:ArrowStyle>
 <a:LineColor>16744576</a:LineColor>
 <a:ShadowColor>12632256</a:ShadowColor>
-<a:FontList>CENTER 0 鏂板畫浣�,8,N</a:FontList>
+<a:FontList>OBJXSTR 0 Arial,8,N</a:FontList>
 <c:SourceSymbol>
 <o:TableSymbol Ref="o481"/>
 </c:SourceSymbol>
@@ -18446,7 +18446,7 @@
 <a:Code>鐝骇绠$悊</a:Code>
 <a:CreationDate>1697080030</a:CreationDate>
 <a:Creator>WYH</a:Creator>
-<a:ModificationDate>1697269523</a:ModificationDate>
+<a:ModificationDate>1697714679</a:ModificationDate>
 <a:Modifier>WYH</a:Modifier>
 <c:PhysicalDiagrams>
 <o:PhysicalDiagram Id="o682">
@@ -18455,7 +18455,7 @@
 <a:Code>鐝骇绠$悊</a:Code>
 <a:CreationDate>1697080030</a:CreationDate>
 <a:Creator>WYH</a:Creator>
-<a:ModificationDate>1697117320</a:ModificationDate>
+<a:ModificationDate>1697641869</a:ModificationDate>
 <a:Modifier>WYH</a:Modifier>
 <a:DisplayPreferences>[DisplayPreferences]
 
@@ -18955,9 +18955,4536 @@
 <o:Table Ref="o684"/>
 </c:Object>
 </o:TableSymbol>
+<o:PackageSymbol Id="o685">
+<a:CreationDate>1697641858</a:CreationDate>
+<a:ModificationDate>1697641869</a:ModificationDate>
+<a:IconMode>-1</a:IconMode>
+<a:Rect>((-2401,-20434), (2398,-16835))</a:Rect>
+<a:LineColor>11711154</a:LineColor>
+<a:FillColor>12648447</a:FillColor>
+<a:ShadowColor>12632256</a:ShadowColor>
+<a:FontList>STRN 0 Arial,8,N
+DISPNAME 0 Arial,8,N
+LABL 0 Arial,8,N</a:FontList>
+<a:BrushStyle>6</a:BrushStyle>
+<a:GradientFillMode>65</a:GradientFillMode>
+<a:GradientEndColor>16777215</a:GradientEndColor>
+<c:Object>
+<o:Package Ref="o686"/>
+</c:Object>
+</o:PackageSymbol>
 </c:Symbols>
 </o:PhysicalDiagram>
 </c:PhysicalDiagrams>
+<c:Packages>
+<o:Package Id="o686">
+<a:ObjectID>46251743-D8F0-4789-95DF-61203463DDFA</a:ObjectID>
+<a:Name>鐝骇鍏憡</a:Name>
+<a:Code>鐝骇鍏憡</a:Code>
+<a:CreationDate>1697641858</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697642638</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<c:PhysicalDiagrams>
+<o:PhysicalDiagram Id="o687">
+<a:ObjectID>23DB84F3-54E3-4AC6-B628-96DF767B3ADD</a:ObjectID>
+<a:Name>PhysicalDiagram_1</a:Name>
+<a:Code>PhysicalDiagram_1</a:Code>
+<a:CreationDate>1697641858</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697642638</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:DisplayPreferences>[DisplayPreferences]
+
+[DisplayPreferences\PDM]
+
+[DisplayPreferences\General]
+Adjust to text=Yes
+Snap Grid=No
+Constrain Labels=Yes
+Display Grid=No
+Show Page Delimiter=Yes
+Grid size=0
+Graphic unit=2
+Window color=255, 255, 255
+Background image=
+Background mode=8
+Watermark image=
+Watermark mode=8
+Show watermark on screen=No
+Gradient mode=0
+Gradient end color=255, 255, 255
+Show Swimlane=No
+SwimlaneVert=Yes
+TreeVert=No
+CompDark=0
+
+[DisplayPreferences\Object]
+Mode=0
+Trunc Length=80
+Word Length=80
+Word Text=!&quot;&quot;#$%&amp;&#39;()*+,-./:;&lt;=&gt;?@[\]^_`{|}~
+Shortcut IntIcon=Yes
+Shortcut IntLoct=Yes
+Shortcut IntFullPath=No
+Shortcut IntLastPackage=Yes
+Shortcut ExtIcon=Yes
+Shortcut ExtLoct=No
+Shortcut ExtFullPath=No
+Shortcut ExtLastPackage=Yes
+Shortcut ExtIncludeModl=Yes
+EObjShowStrn=Yes
+ExtendedObject.Comment=No
+ExtendedObject.IconPicture=No
+ExtendedObject_SymbolLayout=
+ELnkShowStrn=Yes
+ELnkShowName=Yes
+ExtendedLink_SymbolLayout=
+FileObject.Stereotype=No
+FileObject.DisplayName=Yes
+FileObject.LocationOrName=No
+FileObject.IconPicture=No
+FileObject.IconMode=Yes
+FileObject_SymbolLayout=
+PckgShowStrn=Yes
+Package.Comment=No
+Package.IconPicture=No
+Package_SymbolLayout=
+Display Model Version=Yes
+Table.Stereotype=Yes
+Table.DisplayName=Yes
+Table.OwnerDisplayName=No
+Table.Columns=Yes
+Table.Columns._Filter=&quot;All Columns&quot; PDMCOLNALL
+Table.Columns._Columns=Stereotype DataType KeyIndicator
+Table.Columns._Limit=-5
+Table.Keys=No
+Table.Keys._Columns=Stereotype Indicator
+Table.Indexes=No
+Table.Indexes._Columns=Stereotype
+Table.Triggers=No
+Table.Triggers._Columns=Stereotype
+Table.Comment=No
+Table.IconPicture=No
+Table_SymbolLayout=&lt;Form&gt;[CRLF] &lt;StandardAttribute Name=&quot;Stereotype&quot; Attribute=&quot;Stereotype&quot; Prefix=&quot;&amp;lt;&amp;lt;&quot; Suffix=&quot;&amp;gt;&amp;gt;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;ExclusiveChoice Name=&quot;Exclusive Choice&quot; Mandatory=&quot;Yes&quot; Display=&quot;HorizontalRadios&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Name&quot; Attribute=&quot;DisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;StandardAttribute Name=&quot;Owner and Name&quot; Attribute=&quot;OwnerDisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/ExclusiveChoice&gt;[CRLF] &lt;Separator Name=&quot;Separator&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Columns&quot; Collection=&quot;Columns&quot; Columns=&quot;Stereotype No\r\nDisplayName Yes\r\nDataType No\r\nSymbolDataType No &amp;quot;Domain or Data type&amp;quot;\r\nDomain No\r\nKeyIndicator No\r\nIndexIndicator No\r\nNullStatus No&quot; Filters=&quot;&amp;quot;All Columns&amp;quot;  PDMCOLNALL &amp;quot;&amp;quot;\r\n&amp;quot;PK Columns&amp;quot;  PDMCOLNPK &amp;quot;PRIM \&amp;quot;TRUE\&amp;quot; TRUE&amp;quot;\r\n&amp;quot;Key Columns&amp;quot;  PDMCOLNKEY &amp;quot;KEYS \&amp;quot;TRUE\&amp;quot; TRUE&amp;quot;&quot; HasLimit=&quot;Yes&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Keys&quot; Collection=&quot;Keys&quot; Columns=&quot;Stereotype No\r\nDisplayName Yes\r\nIndicator No&quot; HasLimit=&quot;No&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Indexes&quot; Collection=&quot;Indexes&quot; Columns=&quot;Stereotype No\r\nDisplayName Yes\r\nIndicator No&quot; HasLimit=&quot;No&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Triggers&quot; Collection=&quot;Triggers&quot; Columns=&quot;Stereotype No\r\nDisplayName Yes&quot; HasLimit=&quot;No&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Comment&quot; Attribute=&quot;Comment&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;LEFT&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Icon&quot; Attribute=&quot;IconPicture&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;Yes&quot; /&gt;[CRLF]&lt;/Form&gt;
+View.Stereotype=Yes
+View.DisplayName=Yes
+View.OwnerDisplayName=No
+View.Columns=Yes
+View.Columns._Columns=DisplayName
+View.Columns._Limit=-5
+View.TemporaryVTables=Yes
+View.Indexes=No
+View.Comment=No
+View.IconPicture=No
+View_SymbolLayout=&lt;Form&gt;[CRLF] &lt;StandardAttribute Name=&quot;Stereotype&quot; Attribute=&quot;Stereotype&quot; Prefix=&quot;&amp;lt;&amp;lt;&quot; Suffix=&quot;&amp;gt;&amp;gt;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;ExclusiveChoice Name=&quot;Exclusive Choice&quot; Mandatory=&quot;Yes&quot; Display=&quot;HorizontalRadios&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Name&quot; Attribute=&quot;DisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;StandardAttribute Name=&quot;Owner and Name&quot; Attribute=&quot;OwnerDisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/ExclusiveChoice&gt;[CRLF] &lt;Separator Name=&quot;Separator&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Columns&quot; Collection=&quot;Columns&quot; Columns=&quot;DisplayName No\r\nExpression No\r\nDataType No\r\nSymbolDataType No &amp;quot;Domain or Data type&amp;quot;\r\nIndexIndicator No&quot; HasLimit=&quot;Yes&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Tables&quot; Collection=&quot;TemporaryVTables&quot; Columns=&quot;Name Yes&quot; HasLimit=&quot;No&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Indexes&quot; Collection=&quot;Indexes&quot; Columns=&quot;DisplayName Yes&quot; HasLimit=&quot;No&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Comment&quot; Attribute=&quot;Comment&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;LEFT&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Icon&quot; Attribute=&quot;IconPicture&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;Yes&quot; /&gt;[CRLF]&lt;/Form&gt;
+Procedure.Stereotype=No
+Procedure.DisplayName=Yes
+Procedure.OwnerDisplayName=No
+Procedure.Comment=No
+Procedure.IconPicture=No
+Procedure_SymbolLayout=&lt;Form&gt;[CRLF] &lt;StandardAttribute Name=&quot;Stereotype&quot; Attribute=&quot;Stereotype&quot; Prefix=&quot;&amp;lt;&amp;lt;&quot; Suffix=&quot;&amp;gt;&amp;gt;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;ExclusiveChoice Name=&quot;Exclusive Choice&quot; Mandatory=&quot;Yes&quot; Display=&quot;HorizontalRadios&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Name&quot; Attribute=&quot;DisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;StandardAttribute Name=&quot;Owner and Name&quot; Attribute=&quot;OwnerDisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/ExclusiveChoice&gt;[CRLF] &lt;Separator Name=&quot;Separator&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Comment&quot; Attribute=&quot;Comment&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;LEFT&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Icon&quot; Attribute=&quot;IconPicture&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;Yes&quot; /&gt;[CRLF]&lt;/Form&gt;
+Reference.Cardinality=No
+Reference.ImplementationType=No
+Reference.ChildRole=Yes
+Reference.Stereotype=Yes
+Reference.DisplayName=No
+Reference.ForeignKeyConstraintName=Yes
+Reference.JoinExpression=No
+Reference.Integrity=No
+Reference.ParentRole=Yes
+Reference_SymbolLayout=&lt;Form&gt;[CRLF] &lt;Form Name=&quot;Source&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Cardinality&quot; Attribute=&quot;Cardinality&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;StandardAttribute Name=&quot;Implementation&quot; Attribute=&quot;ImplementationType&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;StandardAttribute Name=&quot;Child Role&quot; Attribute=&quot;ChildRole&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/Form&gt;[CRLF] &lt;Form Name=&quot;Center&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Stereotype&quot; Attribute=&quot;Stereotype&quot; Prefix=&quot;&amp;lt;&amp;lt;&quot; Suffix=&quot;&amp;gt;&amp;gt;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;ExclusiveChoice Name=&quot;Exclusive Choice&quot; Mandatory=&quot;No&quot; Display=&quot;HorizontalRadios&quot; &gt;[CRLF]   &lt;StandardAttribute Name=&quot;Name&quot; Attribute=&quot;DisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]   &lt;StandardAttribute Name=&quot;Cons&amp;amp;traint Name&quot; Attribute=&quot;ForeignKeyConstraintName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;Cons&amp;amp;traint Name&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]   &lt;StandardAttribute Name=&quot;Join&quot; Attribute=&quot;JoinExpression&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;Join&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;/ExclusiveChoice&gt;[CRLF]  &lt;StandardAttribute Name=&quot;Referential integrity&quot; Attribute=&quot;Integrity&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;Referential integrity&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/Form&gt;[CRLF] &lt;Form Name=&quot;Destination&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Parent Role&quot; Attribute=&quot;ParentRole&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/Form&gt;[CRLF]&lt;/Form&gt;
+ViewReference.ChildRole=Yes
+ViewReference.Stereotype=Yes
+ViewReference.DisplayName=No
+ViewReference.JoinExpression=No
+ViewReference.ParentRole=Yes
+ViewReference_SymbolLayout=&lt;Form&gt;[CRLF] &lt;Form Name=&quot;Source&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Child Role&quot; Attribute=&quot;ChildRole&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/Form&gt;[CRLF] &lt;Form Name=&quot;Center&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Stereotype&quot; Attribute=&quot;Stereotype&quot; Prefix=&quot;&amp;lt;&amp;lt;&quot; Suffix=&quot;&amp;gt;&amp;gt;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;ExclusiveChoice Name=&quot;Exclusive Choice&quot; Mandatory=&quot;No&quot; Display=&quot;HorizontalRadios&quot; &gt;[CRLF]   &lt;StandardAttribute Name=&quot;Name&quot; Attribute=&quot;DisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]   &lt;StandardAttribute Name=&quot;Join Expression&quot; Attribute=&quot;JoinExpression&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;/ExclusiveChoice&gt;[CRLF] &lt;/Form&gt;[CRLF] &lt;Form Name=&quot;Destination&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Parent Role&quot; Attribute=&quot;ParentRole&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/Form&gt;[CRLF]&lt;/Form&gt;
+
+[DisplayPreferences\Symbol]
+
+[DisplayPreferences\Symbol\FRMEOBJ]
+STRNFont=Arial,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial,8,N
+DISPNAMEFont color=0, 0, 0
+LABLFont=Arial,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=6000
+Height=2000
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=64
+Brush gradient color=192 192 192
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 255 128 128
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\FRMELNK]
+CENTERFont=Arial,8,N
+CENTERFont color=0, 0, 0
+Line style=2
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 128 255
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\FILO]
+OBJSTRNFont=鏂板畫浣�,8,N
+OBJSTRNFont color=0, 0, 0
+DISPNAMEFont=鏂板畫浣�,8,N
+DISPNAMEFont color=0, 0, 0
+LCNMFont=鏂板畫浣�,8,N
+LCNMFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=Yes
+Keep center=Yes
+Keep size=No
+Width=2400
+Height=2400
+Brush color=255 255 255
+Fill Color=No
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 0 255
+Shadow color=192 192 192
+Shadow=-1
+
+[DisplayPreferences\Symbol\PDMPCKG]
+STRNFont=Arial,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial,8,N
+DISPNAMEFont color=0, 0, 0
+LABLFont=Arial,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4800
+Height=3600
+Brush color=255 255 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 178 178 178
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\TABL]
+STRNFont=鏂板畫浣�,20,N
+STRNFont color=0 0 0
+DISPNAMEFont=鏂板畫浣�,8,N
+DISPNAMEFont color=0 0 0
+OWNRDISPNAMEFont=鏂板畫浣�,8,N
+OWNRDISPNAMEFont color=0 0 0
+ColumnsFont=鏂板畫浣�,8,N
+ColumnsFont color=0 0 0
+TablePkColumnsFont=鏂板畫浣�,8,U
+TablePkColumnsFont color=0 0 0
+TableFkColumnsFont=鏂板畫浣�,8,N
+TableFkColumnsFont color=0 0 0
+KeysFont=鏂板畫浣�,8,N
+KeysFont color=0 0 0
+IndexesFont=鏂板畫浣�,8,N
+IndexesFont color=0 0 0
+TriggersFont=鏂板畫浣�,8,N
+TriggersFont color=0 0 0
+LABLFont=鏂板畫浣�,8,N
+LABLFont color=0 0 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=15000
+Height=7500
+Brush color=178 214 252
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\VIEW]
+STRNFont=Arial,8,N
+STRNFont color=0 0 0
+DISPNAMEFont=Arial,8,N
+DISPNAMEFont color=0 0 0
+OWNRDISPNAMEFont=鏂板畫浣�,8,N
+OWNRDISPNAMEFont color=0, 0, 0
+ColumnsFont=Arial,8,N
+ColumnsFont color=0 0 0
+TablePkColumnsFont=鏂板畫浣�,8,U
+TablePkColumnsFont color=0, 0, 0
+TableFkColumnsFont=鏂板畫浣�,8,N
+TableFkColumnsFont color=0, 0, 0
+TemporaryVTablesFont=Arial,8,N
+TemporaryVTablesFont color=0 0 0
+IndexesFont=Arial,8,N
+IndexesFont color=0 0 0
+LABLFont=Arial,8,N
+LABLFont color=0 0 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4800
+Height=4000
+Brush color=233 202 131
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 128 128
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\PROC]
+STRNFont=Arial,8,N
+STRNFont color=0 0 0
+DISPNAMEFont=Arial,8,N
+DISPNAMEFont color=0 0 0
+OWNRDISPNAMEFont=鏂板畫浣�,8,N
+OWNRDISPNAMEFont color=0, 0, 0
+LABLFont=Arial,8,N
+LABLFont color=0 0 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4000
+Height=1000
+Brush color=255 255 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 108 0
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\REFR]
+SOURCEFont=鏂板畫浣�,8,N
+SOURCEFont color=0, 0, 0
+CENTERFont=鏂板畫浣�,8,N
+CENTERFont color=0, 0, 0
+DESTINATIONFont=鏂板畫浣�,8,N
+DESTINATIONFont color=0, 0, 0
+Line style=2
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 0 64
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\VREF]
+SOURCEFont=鏂板畫浣�,8,N
+SOURCEFont color=0, 0, 0
+CENTERFont=鏂板畫浣�,8,N
+CENTERFont color=0, 0, 0
+DESTINATIONFont=鏂板畫浣�,8,N
+DESTINATIONFont color=0, 0, 0
+Line style=2
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 0 64
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\USRDEPD]
+OBJXSTRFont=Arial,8,N
+OBJXSTRFont color=0 0 0
+Line style=0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=2 0 128 0 64
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\Free Symbol]
+Free TextFont=Arial,8,N
+Free TextFont color=0 0 0
+Line style=2
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 64 0
+Shadow color=192 192 192
+Shadow=0</a:DisplayPreferences>
+<a:PaperSize>(8268, 11693)</a:PaperSize>
+<a:PageMargins>((315,354), (433,354))</a:PageMargins>
+<a:PageOrientation>1</a:PageOrientation>
+<a:PaperSource>15</a:PaperSource>
+<c:Symbols>
+<o:TableSymbol Id="o688">
+<a:CreationDate>1697641879</a:CreationDate>
+<a:ModificationDate>1697695371</a:ModificationDate>
+<a:IconMode>-1</a:IconMode>
+<a:Rect>((-25519,3562), (25519,24834))</a:Rect>
+<a:AutoAdjustToText>0</a:AutoAdjustToText>
+<a:LineColor>12615680</a:LineColor>
+<a:FillColor>16570034</a:FillColor>
+<a:ShadowColor>12632256</a:ShadowColor>
+<a:FontList>STRN 0 Courier New,11,N
+DISPNAME 0 Courier New,11,N
+OWNRDISPNAME 0 Courier New,11,N
+Columns 0 Courier New,11,N
+TablePkColumns 255 Courier New,11,N
+TableFkColumns 16711680 Courier New,11,N
+Keys 0 Courier New,11,N
+Indexes 0 Courier New,11,N
+Triggers 0 Courier New,11,N
+LABL 0 Courier New,11,N</a:FontList>
+<a:BrushStyle>6</a:BrushStyle>
+<a:GradientFillMode>65</a:GradientFillMode>
+<a:GradientEndColor>16777215</a:GradientEndColor>
+<a:ManuallyResized>1</a:ManuallyResized>
+<c:Object>
+<o:Table Ref="o689"/>
+</c:Object>
+</o:TableSymbol>
+<o:TableSymbol Id="o690">
+<a:CreationDate>1697642638</a:CreationDate>
+<a:ModificationDate>1697695918</a:ModificationDate>
+<a:IconMode>-1</a:IconMode>
+<a:Rect>((-25394,-12788), (25644,1000))</a:Rect>
+<a:AutoAdjustToText>0</a:AutoAdjustToText>
+<a:LineColor>12615680</a:LineColor>
+<a:FillColor>16570034</a:FillColor>
+<a:ShadowColor>12632256</a:ShadowColor>
+<a:FontList>STRN 0 Courier New,11,N
+DISPNAME 0 Courier New,11,N
+OWNRDISPNAME 0 Courier New,11,N
+Columns 0 Courier New,11,N
+TablePkColumns 255 Courier New,11,N
+TableFkColumns 16711680 Courier New,11,N
+Keys 0 Courier New,11,N
+Indexes 0 Courier New,11,N
+Triggers 0 Courier New,11,N
+LABL 0 Courier New,11,N</a:FontList>
+<a:BrushStyle>6</a:BrushStyle>
+<a:GradientFillMode>65</a:GradientFillMode>
+<a:GradientEndColor>16777215</a:GradientEndColor>
+<a:ManuallyResized>1</a:ManuallyResized>
+<c:Object>
+<o:Table Ref="o691"/>
+</c:Object>
+</o:TableSymbol>
+</c:Symbols>
+</o:PhysicalDiagram>
+</c:PhysicalDiagrams>
+<c:DefaultDiagram>
+<o:PhysicalDiagram Ref="o687"/>
+</c:DefaultDiagram>
+<c:Tables>
+<o:Table Id="o689">
+<a:ObjectID>4533FB4F-631E-407A-AA9C-70B8FE9EB8B4</a:ObjectID>
+<a:Name>鍩硅鐝�氱煡鍏憡銆恇jgl_class_notice銆�</a:Name>
+<a:Code>bjgl_class_notice</a:Code>
+<a:CreationDate>1697641879</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697695367</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍩硅鐝�氱煡鍏憡銆恇jgl_class_notice銆�</a:Comment>
+<a:TotalSavingCurrency/>
+<c:Columns>
+<o:Column Id="o692">
+<a:ObjectID>2F14BB78-BDDB-47F3-A9E9-FB0723DDD454</a:ObjectID>
+<a:Name>ID</a:Name>
+<a:Code>id</a:Code>
+<a:CreationDate>1697641879</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697641879</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>ID</a:Comment>
+<a:DataType>VARCHAR(32)</a:DataType>
+<a:Length>32</a:Length>
+<a:Mandatory>1</a:Mandatory>
+</o:Column>
+<o:Column Id="o693">
+<a:ObjectID>961E7B98-CDF8-4AFB-B727-D4FE32AA5806</a:ObjectID>
+<a:Name>鍏憡鏍囬</a:Name>
+<a:Code>notic_title</a:Code>
+<a:CreationDate>1697642158</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697642198</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍏憡鏍囬</a:Comment>
+<a:DataType>VARCHAR(300)</a:DataType>
+<a:Length>300</a:Length>
+</o:Column>
+<o:Column Id="o694">
+<a:ObjectID>241E1C55-0C7B-466D-9DB3-A8887D4F86E6</a:ObjectID>
+<a:Name>宸茶鏁�</a:Name>
+<a:Code>read_num</a:Code>
+<a:CreationDate>1697642198</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697642262</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>宸茶鏁�</a:Comment>
+<a:DataType>INT2</a:DataType>
+<a:Length>2</a:Length>
+</o:Column>
+<o:Column Id="o695">
+<a:ObjectID>6E03FFA1-8ABA-457C-B97E-D5200751653D</a:ObjectID>
+<a:Name>鏈鏁�</a:Name>
+<a:Code>unread</a:Code>
+<a:CreationDate>1697642198</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697642262</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鏈鏁�</a:Comment>
+<a:DataType>INT2</a:DataType>
+<a:Length>2</a:Length>
+</o:Column>
+<o:Column Id="o696">
+<a:ObjectID>42024B73-EA1B-4115-B0C5-DFA06A1C9BFA</a:ObjectID>
+<a:Name>鍐呭</a:Name>
+<a:Code>context</a:Code>
+<a:CreationDate>1697642262</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697642300</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍐呭</a:Comment>
+<a:DataType>TEXT</a:DataType>
+</o:Column>
+<o:Column Id="o697">
+<a:ObjectID>D6D3A275-4EF7-4002-8D9A-8B448A94C526</a:ObjectID>
+<a:Name>鐘舵�併��0锛氭甯搞��1锛氱鐢ㄣ��2锛氬垹闄ゃ��</a:Name>
+<a:Code>status</a:Code>
+<a:CreationDate>1697642074</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697642158</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鐘舵�併��0锛氭甯搞��1锛氱鐢ㄣ��2锛氬垹闄ゃ��</a:Comment>
+<a:DataType>INT2</a:DataType>
+<a:Length>2</a:Length>
+</o:Column>
+<o:Column Id="o698">
+<a:ObjectID>BF7CAF56-1C5F-486C-B57B-50FA286AC9ED</a:ObjectID>
+<a:Name>鐝骇id</a:Name>
+<a:Code>class_info_id</a:Code>
+<a:CreationDate>1697642319</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697642346</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鐝骇id</a:Comment>
+<a:DataType>VARCHAR(32)</a:DataType>
+<a:Length>32</a:Length>
+</o:Column>
+<o:Column Id="o699">
+<a:ObjectID>B8D98A37-47EA-437D-A313-4C156D1DD9E0</a:ObjectID>
+<a:Name>閫氱煡鑼冨洿銆�0锛氬叏閮ㄣ��1锛氶儴鍒嗐��</a:Name>
+<a:Code>scope</a:Code>
+<a:CreationDate>1697695325</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697695360</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>閫氱煡鑼冨洿銆�0锛氬叏閮ㄣ��1锛氶儴鍒嗐��</a:Comment>
+<a:DataType>INT2</a:DataType>
+<a:Length>2</a:Length>
+</o:Column>
+<o:Column Id="o700">
+<a:ObjectID>C5A00B7D-46C3-49FD-AEFF-4C9E3925C596</a:ObjectID>
+<a:Name>鍒涘缓浜�</a:Name>
+<a:Code>create_user_id</a:Code>
+<a:CreationDate>1697641879</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697641879</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍒涘缓浜�</a:Comment>
+<a:DataType>INT8</a:DataType>
+<a:Length>8</a:Length>
+</o:Column>
+<o:Column Id="o701">
+<a:ObjectID>E6DB4B96-1519-4AE1-9FFE-C91574D84188</a:ObjectID>
+<a:Name>鍒涘缓浜哄悕绉�</a:Name>
+<a:Code>create_user_name</a:Code>
+<a:CreationDate>1697641957</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697642021</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍒涘缓浜哄悕绉�</a:Comment>
+<a:DataType>VARCHAR(50)</a:DataType>
+<a:Length>50</a:Length>
+</o:Column>
+<o:Column Id="o702">
+<a:ObjectID>6F4E3F68-84E1-45FB-9946-62B898EAECF3</a:ObjectID>
+<a:Name>鍒涘缓鏃堕棿</a:Name>
+<a:Code>create_time</a:Code>
+<a:CreationDate>1697641879</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697641879</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍒涘缓鏃堕棿</a:Comment>
+<a:DataType>INT8</a:DataType>
+<a:Length>8</a:Length>
+</o:Column>
+<o:Column Id="o703">
+<a:ObjectID>A32C3105-2E23-4534-A64E-C170710B1DA6</a:ObjectID>
+<a:Name>鏈�鍚庢洿鏂颁汉</a:Name>
+<a:Code>update_user_id</a:Code>
+<a:CreationDate>1697641879</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697642021</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鏈�鍚庢洿鏂颁汉</a:Comment>
+<a:DataType>INT8</a:DataType>
+<a:Length>8</a:Length>
+</o:Column>
+<o:Column Id="o704">
+<a:ObjectID>B6083281-8A22-4AE4-B5E7-2CFC473CE6E4</a:ObjectID>
+<a:Name>鏇存柊浜哄悕绉�</a:Name>
+<a:Code>update_user_name</a:Code>
+<a:CreationDate>1697641957</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697642021</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鏇存柊浜哄悕绉�</a:Comment>
+<a:DataType>VARCHAR(50)</a:DataType>
+<a:Length>50</a:Length>
+</o:Column>
+<o:Column Id="o705">
+<a:ObjectID>195FC676-7829-4607-867E-7C7F3FA9DD43</a:ObjectID>
+<a:Name>鏈�鍚庢洿鏂版椂闂�</a:Name>
+<a:Code>update_time</a:Code>
+<a:CreationDate>1697641879</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697642021</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鏈�鍚庢洿鏂版椂闂�</a:Comment>
+<a:DataType>INT8</a:DataType>
+<a:Length>8</a:Length>
+</o:Column>
+</c:Columns>
+<c:Keys>
+<o:Key Id="o706">
+<a:ObjectID>9B7081C2-06F4-4AC1-8D26-03863B677B6A</a:ObjectID>
+<a:Name>Key_1</a:Name>
+<a:Code>Key_1</a:Code>
+<a:CreationDate>1697641879</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697641879</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<c:Key.Columns>
+<o:Column Ref="o692"/>
+</c:Key.Columns>
+</o:Key>
+</c:Keys>
+<c:PrimaryKey>
+<o:Key Ref="o706"/>
+</c:PrimaryKey>
+</o:Table>
+<o:Table Id="o691">
+<a:ObjectID>DE38A5A8-681E-430E-819E-5091162034F4</a:ObjectID>
+<a:Name>鍩硅鐝�氱煡鍏憡鐢ㄦ埛銆恇jgl_class_notice_user銆�</a:Name>
+<a:Code>bjgl_class_notice_user</a:Code>
+<a:CreationDate>1697642638</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697695936</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍩硅鐝�氱煡鍏憡鐢ㄦ埛銆恇jgl_class_notice_user銆�</a:Comment>
+<a:TotalSavingCurrency/>
+<c:Columns>
+<o:Column Id="o707">
+<a:ObjectID>29054D00-EA69-4FE8-B9DE-7E4777940173</a:ObjectID>
+<a:Name>ID</a:Name>
+<a:Code>id</a:Code>
+<a:CreationDate>1697642638</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697642638</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>ID</a:Comment>
+<a:DataType>VARCHAR(32)</a:DataType>
+<a:Length>32</a:Length>
+<a:Mandatory>1</a:Mandatory>
+</o:Column>
+<o:Column Id="o708">
+<a:ObjectID>543F3ACE-8F3E-4846-9AA8-8E70A3828F2A</a:ObjectID>
+<a:Name>鍩硅鐝�氱煡鍏憡銆恇jgl_class_notice銆�</a:Name>
+<a:Code>notice_id</a:Code>
+<a:CreationDate>1697695897</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697695913</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍩硅鐝�氱煡鍏憡銆恇jgl_class_notice銆�</a:Comment>
+<a:DataType>VARCHAR(32)</a:DataType>
+<a:Length>32</a:Length>
+</o:Column>
+<o:Column Id="o709">
+<a:ObjectID>87F0F3FE-4920-4CFD-8A23-CC20B961D69A</a:ObjectID>
+<a:Name>鐝骇id</a:Name>
+<a:Code>class_info_id</a:Code>
+<a:CreationDate>1697642638</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697642638</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鐝骇id</a:Comment>
+<a:DataType>VARCHAR(32)</a:DataType>
+<a:Length>32</a:Length>
+</o:Column>
+<o:Column Id="o710">
+<a:ObjectID>3BEF904B-0075-4EB8-A888-CB1ED45A4F21</a:ObjectID>
+<a:Name>鐢ㄦ埛淇℃伅json
+[{user_id:鐢ㄦ埛ID,user_name:鐢ㄦ埛濮撳悕,read:&#39;0/1&#39;}]
+0鏈銆�1宸茶</a:Name>
+<a:Code>user_json</a:Code>
+<a:CreationDate>1697695234</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697695477</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鐢ㄦ埛淇℃伅json
+[{user_id:鐢ㄦ埛ID,user_name:鐢ㄦ埛濮撳悕,read:&#39;0/1&#39;}]
+0鏈銆�1宸茶</a:Comment>
+<a:DataType>TEXT</a:DataType>
+</o:Column>
+</c:Columns>
+<c:Keys>
+<o:Key Id="o711">
+<a:ObjectID>10E8CE27-9507-4BA4-B4E3-D2403587760A</a:ObjectID>
+<a:Name>Key_1</a:Name>
+<a:Code>Key_1</a:Code>
+<a:CreationDate>1697642638</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697642638</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<c:Key.Columns>
+<o:Column Ref="o707"/>
+</c:Key.Columns>
+</o:Key>
+</c:Keys>
+<c:PrimaryKey>
+<o:Key Ref="o711"/>
+</c:PrimaryKey>
+</o:Table>
+</c:Tables>
+</o:Package>
+<o:Package Id="o712">
+<a:ObjectID>35BA580D-D00D-44AE-8A92-7C2E96C76A3A</a:ObjectID>
+<a:Name>瀛﹀憳鍒楄〃銆佹姤鍚嶃�佹姤鍒般�佸鍛�</a:Name>
+<a:Code>瀛﹀憳鍒楄〃銆佹姤鍚嶃�佹姤鍒般�佸鍛�</a:Code>
+<a:CreationDate>1697695538</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697700693</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<c:PhysicalDiagrams>
+<o:PhysicalDiagram Id="o713">
+<a:ObjectID>AF642B08-7C6A-4222-B544-8F6C2045FA21</a:ObjectID>
+<a:Name>PhysicalDiagram_1</a:Name>
+<a:Code>PhysicalDiagram_1</a:Code>
+<a:CreationDate>1697695538</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697700576</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:DisplayPreferences>[DisplayPreferences]
+
+[DisplayPreferences\PDM]
+
+[DisplayPreferences\General]
+Adjust to text=Yes
+Snap Grid=No
+Constrain Labels=Yes
+Display Grid=No
+Show Page Delimiter=Yes
+Grid size=0
+Graphic unit=2
+Window color=255, 255, 255
+Background image=
+Background mode=8
+Watermark image=
+Watermark mode=8
+Show watermark on screen=No
+Gradient mode=0
+Gradient end color=255, 255, 255
+Show Swimlane=No
+SwimlaneVert=Yes
+TreeVert=No
+CompDark=0
+
+[DisplayPreferences\Object]
+Mode=0
+Trunc Length=80
+Word Length=80
+Word Text=!&quot;&quot;#$%&amp;&#39;()*+,-./:;&lt;=&gt;?@[\]^_`{|}~
+Shortcut IntIcon=Yes
+Shortcut IntLoct=Yes
+Shortcut IntFullPath=No
+Shortcut IntLastPackage=Yes
+Shortcut ExtIcon=Yes
+Shortcut ExtLoct=No
+Shortcut ExtFullPath=No
+Shortcut ExtLastPackage=Yes
+Shortcut ExtIncludeModl=Yes
+EObjShowStrn=Yes
+ExtendedObject.Comment=No
+ExtendedObject.IconPicture=No
+ExtendedObject_SymbolLayout=
+ELnkShowStrn=Yes
+ELnkShowName=Yes
+ExtendedLink_SymbolLayout=
+FileObject.Stereotype=No
+FileObject.DisplayName=Yes
+FileObject.LocationOrName=No
+FileObject.IconPicture=No
+FileObject.IconMode=Yes
+FileObject_SymbolLayout=
+PckgShowStrn=Yes
+Package.Comment=No
+Package.IconPicture=No
+Package_SymbolLayout=
+Display Model Version=Yes
+Table.Stereotype=Yes
+Table.DisplayName=Yes
+Table.OwnerDisplayName=No
+Table.Columns=Yes
+Table.Columns._Filter=&quot;All Columns&quot; PDMCOLNALL
+Table.Columns._Columns=Stereotype DataType KeyIndicator
+Table.Columns._Limit=-5
+Table.Keys=No
+Table.Keys._Columns=Stereotype Indicator
+Table.Indexes=No
+Table.Indexes._Columns=Stereotype
+Table.Triggers=No
+Table.Triggers._Columns=Stereotype
+Table.Comment=No
+Table.IconPicture=No
+Table_SymbolLayout=&lt;Form&gt;[CRLF] &lt;StandardAttribute Name=&quot;Stereotype&quot; Attribute=&quot;Stereotype&quot; Prefix=&quot;&amp;lt;&amp;lt;&quot; Suffix=&quot;&amp;gt;&amp;gt;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;ExclusiveChoice Name=&quot;Exclusive Choice&quot; Mandatory=&quot;Yes&quot; Display=&quot;HorizontalRadios&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Name&quot; Attribute=&quot;DisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;StandardAttribute Name=&quot;Owner and Name&quot; Attribute=&quot;OwnerDisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/ExclusiveChoice&gt;[CRLF] &lt;Separator Name=&quot;Separator&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Columns&quot; Collection=&quot;Columns&quot; Columns=&quot;Stereotype No\r\nDisplayName Yes\r\nDataType No\r\nSymbolDataType No &amp;quot;Domain or Data type&amp;quot;\r\nDomain No\r\nKeyIndicator No\r\nIndexIndicator No\r\nNullStatus No&quot; Filters=&quot;&amp;quot;All Columns&amp;quot;  PDMCOLNALL &amp;quot;&amp;quot;\r\n&amp;quot;PK Columns&amp;quot;  PDMCOLNPK &amp;quot;PRIM \&amp;quot;TRUE\&amp;quot; TRUE&amp;quot;\r\n&amp;quot;Key Columns&amp;quot;  PDMCOLNKEY &amp;quot;KEYS \&amp;quot;TRUE\&amp;quot; TRUE&amp;quot;&quot; HasLimit=&quot;Yes&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Keys&quot; Collection=&quot;Keys&quot; Columns=&quot;Stereotype No\r\nDisplayName Yes\r\nIndicator No&quot; HasLimit=&quot;No&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Indexes&quot; Collection=&quot;Indexes&quot; Columns=&quot;Stereotype No\r\nDisplayName Yes\r\nIndicator No&quot; HasLimit=&quot;No&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Triggers&quot; Collection=&quot;Triggers&quot; Columns=&quot;Stereotype No\r\nDisplayName Yes&quot; HasLimit=&quot;No&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Comment&quot; Attribute=&quot;Comment&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;LEFT&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Icon&quot; Attribute=&quot;IconPicture&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;Yes&quot; /&gt;[CRLF]&lt;/Form&gt;
+View.Stereotype=Yes
+View.DisplayName=Yes
+View.OwnerDisplayName=No
+View.Columns=Yes
+View.Columns._Columns=DisplayName
+View.Columns._Limit=-5
+View.TemporaryVTables=Yes
+View.Indexes=No
+View.Comment=No
+View.IconPicture=No
+View_SymbolLayout=&lt;Form&gt;[CRLF] &lt;StandardAttribute Name=&quot;Stereotype&quot; Attribute=&quot;Stereotype&quot; Prefix=&quot;&amp;lt;&amp;lt;&quot; Suffix=&quot;&amp;gt;&amp;gt;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;ExclusiveChoice Name=&quot;Exclusive Choice&quot; Mandatory=&quot;Yes&quot; Display=&quot;HorizontalRadios&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Name&quot; Attribute=&quot;DisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;StandardAttribute Name=&quot;Owner and Name&quot; Attribute=&quot;OwnerDisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/ExclusiveChoice&gt;[CRLF] &lt;Separator Name=&quot;Separator&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Columns&quot; Collection=&quot;Columns&quot; Columns=&quot;DisplayName No\r\nExpression No\r\nDataType No\r\nSymbolDataType No &amp;quot;Domain or Data type&amp;quot;\r\nIndexIndicator No&quot; HasLimit=&quot;Yes&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Tables&quot; Collection=&quot;TemporaryVTables&quot; Columns=&quot;Name Yes&quot; HasLimit=&quot;No&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Indexes&quot; Collection=&quot;Indexes&quot; Columns=&quot;DisplayName Yes&quot; HasLimit=&quot;No&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Comment&quot; Attribute=&quot;Comment&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;LEFT&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Icon&quot; Attribute=&quot;IconPicture&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;Yes&quot; /&gt;[CRLF]&lt;/Form&gt;
+Procedure.Stereotype=No
+Procedure.DisplayName=Yes
+Procedure.OwnerDisplayName=No
+Procedure.Comment=No
+Procedure.IconPicture=No
+Procedure_SymbolLayout=&lt;Form&gt;[CRLF] &lt;StandardAttribute Name=&quot;Stereotype&quot; Attribute=&quot;Stereotype&quot; Prefix=&quot;&amp;lt;&amp;lt;&quot; Suffix=&quot;&amp;gt;&amp;gt;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;ExclusiveChoice Name=&quot;Exclusive Choice&quot; Mandatory=&quot;Yes&quot; Display=&quot;HorizontalRadios&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Name&quot; Attribute=&quot;DisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;StandardAttribute Name=&quot;Owner and Name&quot; Attribute=&quot;OwnerDisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/ExclusiveChoice&gt;[CRLF] &lt;Separator Name=&quot;Separator&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Comment&quot; Attribute=&quot;Comment&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;LEFT&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Icon&quot; Attribute=&quot;IconPicture&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;Yes&quot; /&gt;[CRLF]&lt;/Form&gt;
+Reference.Cardinality=No
+Reference.ImplementationType=No
+Reference.ChildRole=Yes
+Reference.Stereotype=Yes
+Reference.DisplayName=No
+Reference.ForeignKeyConstraintName=Yes
+Reference.JoinExpression=No
+Reference.Integrity=No
+Reference.ParentRole=Yes
+Reference_SymbolLayout=&lt;Form&gt;[CRLF] &lt;Form Name=&quot;Source&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Cardinality&quot; Attribute=&quot;Cardinality&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;StandardAttribute Name=&quot;Implementation&quot; Attribute=&quot;ImplementationType&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;StandardAttribute Name=&quot;Child Role&quot; Attribute=&quot;ChildRole&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/Form&gt;[CRLF] &lt;Form Name=&quot;Center&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Stereotype&quot; Attribute=&quot;Stereotype&quot; Prefix=&quot;&amp;lt;&amp;lt;&quot; Suffix=&quot;&amp;gt;&amp;gt;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;ExclusiveChoice Name=&quot;Exclusive Choice&quot; Mandatory=&quot;No&quot; Display=&quot;HorizontalRadios&quot; &gt;[CRLF]   &lt;StandardAttribute Name=&quot;Name&quot; Attribute=&quot;DisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]   &lt;StandardAttribute Name=&quot;Cons&amp;amp;traint Name&quot; Attribute=&quot;ForeignKeyConstraintName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;Cons&amp;amp;traint Name&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]   &lt;StandardAttribute Name=&quot;Join&quot; Attribute=&quot;JoinExpression&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;Join&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;/ExclusiveChoice&gt;[CRLF]  &lt;StandardAttribute Name=&quot;Referential integrity&quot; Attribute=&quot;Integrity&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;Referential integrity&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/Form&gt;[CRLF] &lt;Form Name=&quot;Destination&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Parent Role&quot; Attribute=&quot;ParentRole&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/Form&gt;[CRLF]&lt;/Form&gt;
+ViewReference.ChildRole=Yes
+ViewReference.Stereotype=Yes
+ViewReference.DisplayName=No
+ViewReference.JoinExpression=No
+ViewReference.ParentRole=Yes
+ViewReference_SymbolLayout=&lt;Form&gt;[CRLF] &lt;Form Name=&quot;Source&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Child Role&quot; Attribute=&quot;ChildRole&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/Form&gt;[CRLF] &lt;Form Name=&quot;Center&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Stereotype&quot; Attribute=&quot;Stereotype&quot; Prefix=&quot;&amp;lt;&amp;lt;&quot; Suffix=&quot;&amp;gt;&amp;gt;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;ExclusiveChoice Name=&quot;Exclusive Choice&quot; Mandatory=&quot;No&quot; Display=&quot;HorizontalRadios&quot; &gt;[CRLF]   &lt;StandardAttribute Name=&quot;Name&quot; Attribute=&quot;DisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]   &lt;StandardAttribute Name=&quot;Join Expression&quot; Attribute=&quot;JoinExpression&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;/ExclusiveChoice&gt;[CRLF] &lt;/Form&gt;[CRLF] &lt;Form Name=&quot;Destination&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Parent Role&quot; Attribute=&quot;ParentRole&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/Form&gt;[CRLF]&lt;/Form&gt;
+
+[DisplayPreferences\Symbol]
+
+[DisplayPreferences\Symbol\FRMEOBJ]
+STRNFont=Arial,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial,8,N
+DISPNAMEFont color=0, 0, 0
+LABLFont=Arial,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=6000
+Height=2000
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=64
+Brush gradient color=192 192 192
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 255 128 128
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\FRMELNK]
+CENTERFont=Arial,8,N
+CENTERFont color=0, 0, 0
+Line style=2
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 128 255
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\FILO]
+OBJSTRNFont=鏂板畫浣�,8,N
+OBJSTRNFont color=0, 0, 0
+DISPNAMEFont=鏂板畫浣�,8,N
+DISPNAMEFont color=0, 0, 0
+LCNMFont=鏂板畫浣�,8,N
+LCNMFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=Yes
+Keep center=Yes
+Keep size=No
+Width=2400
+Height=2400
+Brush color=255 255 255
+Fill Color=No
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 0 255
+Shadow color=192 192 192
+Shadow=-1
+
+[DisplayPreferences\Symbol\PDMPCKG]
+STRNFont=Arial,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial,8,N
+DISPNAMEFont color=0, 0, 0
+LABLFont=Arial,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4800
+Height=3600
+Brush color=255 255 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 178 178 178
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\TABL]
+STRNFont=鏂板畫浣�,20,N
+STRNFont color=0 0 0
+DISPNAMEFont=鏂板畫浣�,8,N
+DISPNAMEFont color=0 0 0
+OWNRDISPNAMEFont=鏂板畫浣�,8,N
+OWNRDISPNAMEFont color=0 0 0
+ColumnsFont=鏂板畫浣�,8,N
+ColumnsFont color=0 0 0
+TablePkColumnsFont=鏂板畫浣�,8,U
+TablePkColumnsFont color=0 0 0
+TableFkColumnsFont=鏂板畫浣�,8,N
+TableFkColumnsFont color=0 0 0
+KeysFont=鏂板畫浣�,8,N
+KeysFont color=0 0 0
+IndexesFont=鏂板畫浣�,8,N
+IndexesFont color=0 0 0
+TriggersFont=鏂板畫浣�,8,N
+TriggersFont color=0 0 0
+LABLFont=鏂板畫浣�,8,N
+LABLFont color=0 0 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=15000
+Height=7500
+Brush color=178 214 252
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\VIEW]
+STRNFont=Arial,8,N
+STRNFont color=0 0 0
+DISPNAMEFont=Arial,8,N
+DISPNAMEFont color=0 0 0
+OWNRDISPNAMEFont=鏂板畫浣�,8,N
+OWNRDISPNAMEFont color=0, 0, 0
+ColumnsFont=Arial,8,N
+ColumnsFont color=0 0 0
+TablePkColumnsFont=鏂板畫浣�,8,U
+TablePkColumnsFont color=0, 0, 0
+TableFkColumnsFont=鏂板畫浣�,8,N
+TableFkColumnsFont color=0, 0, 0
+TemporaryVTablesFont=Arial,8,N
+TemporaryVTablesFont color=0 0 0
+IndexesFont=Arial,8,N
+IndexesFont color=0 0 0
+LABLFont=Arial,8,N
+LABLFont color=0 0 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4800
+Height=4000
+Brush color=233 202 131
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 128 128
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\PROC]
+STRNFont=Arial,8,N
+STRNFont color=0 0 0
+DISPNAMEFont=Arial,8,N
+DISPNAMEFont color=0 0 0
+OWNRDISPNAMEFont=鏂板畫浣�,8,N
+OWNRDISPNAMEFont color=0, 0, 0
+LABLFont=Arial,8,N
+LABLFont color=0 0 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4000
+Height=1000
+Brush color=255 255 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 108 0
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\REFR]
+SOURCEFont=鏂板畫浣�,8,N
+SOURCEFont color=0, 0, 0
+CENTERFont=鏂板畫浣�,8,N
+CENTERFont color=0, 0, 0
+DESTINATIONFont=鏂板畫浣�,8,N
+DESTINATIONFont color=0, 0, 0
+Line style=2
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 0 64
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\VREF]
+SOURCEFont=鏂板畫浣�,8,N
+SOURCEFont color=0, 0, 0
+CENTERFont=鏂板畫浣�,8,N
+CENTERFont color=0, 0, 0
+DESTINATIONFont=鏂板畫浣�,8,N
+DESTINATIONFont color=0, 0, 0
+Line style=2
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 0 64
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\USRDEPD]
+OBJXSTRFont=Arial,8,N
+OBJXSTRFont color=0 0 0
+Line style=0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=2 0 128 0 64
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\Free Symbol]
+Free TextFont=Arial,8,N
+Free TextFont color=0 0 0
+Line style=2
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 64 0
+Shadow color=192 192 192
+Shadow=0</a:DisplayPreferences>
+<a:PaperSize>(8268, 11693)</a:PaperSize>
+<a:PageMargins>((315,354), (433,354))</a:PageMargins>
+<a:PageOrientation>1</a:PageOrientation>
+<a:PaperSource>15</a:PaperSource>
+<c:Symbols>
+<o:PolylineSymbol Id="o714">
+<a:CreationDate>1697700533</a:CreationDate>
+<a:ModificationDate>1697700533</a:ModificationDate>
+<a:Rect>((-32692,-16159), (-25717,3791))</a:Rect>
+<a:ListOfPoints>((-25717,-16159),(-32692,-16159),(-32692,3791))</a:ListOfPoints>
+<a:CornerStyle>2</a:CornerStyle>
+<a:TextStyle>4130</a:TextStyle>
+<a:ArrowStyle>0</a:ArrowStyle>
+<a:LineColor>16512</a:LineColor>
+<a:ShadowColor>12632256</a:ShadowColor>
+<a:FontName>Arial,8,N</a:FontName>
+</o:PolylineSymbol>
+<o:NoteSymbol Id="o715">
+<a:Text>鎶ュ埌鍚庢彃鍏ュ鍛樿〃</a:Text>
+<a:CreationDate>1697700538</a:CreationDate>
+<a:ModificationDate>1697700540</a:ModificationDate>
+<a:Rect>((-35316,4538), (-30517,8137))</a:Rect>
+<a:TextStyle>4130</a:TextStyle>
+<a:LineColor>16512</a:LineColor>
+<a:FillColor>16777215</a:FillColor>
+<a:ShadowColor>12632256</a:ShadowColor>
+<a:FontName>Arial,8,N</a:FontName>
+</o:NoteSymbol>
+<o:PolylineSymbol Id="o716">
+<a:CreationDate>1697700576</a:CreationDate>
+<a:ModificationDate>1697700576</a:ModificationDate>
+<a:Rect>((-32992,8662), (-24367,14587))</a:Rect>
+<a:ListOfPoints>((-32992,8662),(-32992,14587),(-24367,14587))</a:ListOfPoints>
+<a:CornerStyle>2</a:CornerStyle>
+<a:TextStyle>4130</a:TextStyle>
+<a:ArrowStyle>0</a:ArrowStyle>
+<a:LineColor>16512</a:LineColor>
+<a:ShadowColor>12632256</a:ShadowColor>
+<a:FontName>Arial,8,N</a:FontName>
+</o:PolylineSymbol>
+<o:ExtendedDependencySymbol Id="o717">
+<a:CreationDate>1697696960</a:CreationDate>
+<a:ModificationDate>1697696960</a:ModificationDate>
+<a:Rect>((62134,8023), (74659,22123))</a:Rect>
+<a:ListOfPoints>((74659,22123),(62134,8023))</a:ListOfPoints>
+<a:ArrowStyle>8</a:ArrowStyle>
+<a:LineColor>4194432</a:LineColor>
+<a:ShadowColor>12632256</a:ShadowColor>
+<a:FontList>OBJXSTR 0 Arial,8,N</a:FontList>
+<c:SourceSymbol>
+<o:TableSymbol Ref="o718"/>
+</c:SourceSymbol>
+<c:DestinationSymbol>
+<o:TableSymbol Ref="o719"/>
+</c:DestinationSymbol>
+<c:Object>
+<o:ExtendedDependency Ref="o720"/>
+</c:Object>
+</o:ExtendedDependencySymbol>
+<o:ExtendedDependencySymbol Id="o721">
+<a:CreationDate>1697696965</a:CreationDate>
+<a:ModificationDate>1697696965</a:ModificationDate>
+<a:Rect>((10009,21298), (30784,22123))</a:Rect>
+<a:ListOfPoints>((30784,21298),(10009,22123))</a:ListOfPoints>
+<a:ArrowStyle>8</a:ArrowStyle>
+<a:LineColor>4194432</a:LineColor>
+<a:ShadowColor>12632256</a:ShadowColor>
+<a:FontList>OBJXSTR 0 Arial,8,N</a:FontList>
+<c:SourceSymbol>
+<o:TableSymbol Ref="o719"/>
+</c:SourceSymbol>
+<c:DestinationSymbol>
+<o:TableSymbol Ref="o722"/>
+</c:DestinationSymbol>
+<c:Object>
+<o:ExtendedDependency Ref="o723"/>
+</c:Object>
+</o:ExtendedDependencySymbol>
+<o:ExtendedDependencySymbol Id="o724">
+<a:CreationDate>1697700503</a:CreationDate>
+<a:ModificationDate>1697700503</a:ModificationDate>
+<a:Rect>((8783,-15334), (16358,11666))</a:Rect>
+<a:ListOfPoints>((16358,-15334),(8783,11666))</a:ListOfPoints>
+<a:ArrowStyle>8</a:ArrowStyle>
+<a:LineColor>4194432</a:LineColor>
+<a:ShadowColor>12632256</a:ShadowColor>
+<a:FontList>OBJXSTR 0 Arial,8,N</a:FontList>
+<c:SourceSymbol>
+<o:TableSymbol Ref="o725"/>
+</c:SourceSymbol>
+<c:DestinationSymbol>
+<o:TableSymbol Ref="o722"/>
+</c:DestinationSymbol>
+<c:Object>
+<o:ExtendedDependency Ref="o726"/>
+</c:Object>
+</o:ExtendedDependencySymbol>
+<o:TableSymbol Id="o722">
+<a:CreationDate>1697695561</a:CreationDate>
+<a:ModificationDate>1697695992</a:ModificationDate>
+<a:IconMode>-1</a:IconMode>
+<a:Rect>((-25519,-1427), (25519,24735))</a:Rect>
+<a:AutoAdjustToText>0</a:AutoAdjustToText>
+<a:LineColor>12615680</a:LineColor>
+<a:FillColor>16570034</a:FillColor>
+<a:ShadowColor>12632256</a:ShadowColor>
+<a:FontList>STRN 0 Courier New,11,N
+DISPNAME 0 Courier New,11,N
+OWNRDISPNAME 0 Courier New,11,N
+Columns 0 Courier New,11,N
+TablePkColumns 255 Courier New,11,N
+TableFkColumns 16711680 Courier New,11,N
+Keys 0 Courier New,11,N
+Indexes 0 Courier New,11,N
+Triggers 0 Courier New,11,N
+LABL 0 Courier New,11,N</a:FontList>
+<a:BrushStyle>6</a:BrushStyle>
+<a:GradientFillMode>65</a:GradientFillMode>
+<a:GradientEndColor>16777215</a:GradientEndColor>
+<a:ManuallyResized>1</a:ManuallyResized>
+<c:Object>
+<o:Table Ref="o727"/>
+</c:Object>
+</o:TableSymbol>
+<o:TableSymbol Id="o725">
+<a:CreationDate>1697695786</a:CreationDate>
+<a:ModificationDate>1697700482</a:ModificationDate>
+<a:IconMode>-1</a:IconMode>
+<a:Rect>((-25519,-38640), (25519,-4364))</a:Rect>
+<a:AutoAdjustToText>0</a:AutoAdjustToText>
+<a:LineColor>12615680</a:LineColor>
+<a:FillColor>16570034</a:FillColor>
+<a:ShadowColor>12632256</a:ShadowColor>
+<a:FontList>STRN 0 Courier New,11,N
+DISPNAME 0 Courier New,11,N
+OWNRDISPNAME 0 Courier New,11,N
+Columns 0 Courier New,11,N
+TablePkColumns 255 Courier New,11,N
+TableFkColumns 16711680 Courier New,11,N
+Keys 0 Courier New,11,N
+Indexes 0 Courier New,11,N
+Triggers 0 Courier New,11,N
+LABL 0 Courier New,11,N</a:FontList>
+<a:BrushStyle>6</a:BrushStyle>
+<a:GradientFillMode>65</a:GradientFillMode>
+<a:GradientEndColor>16777215</a:GradientEndColor>
+<a:ManuallyResized>1</a:ManuallyResized>
+<c:Object>
+<o:Table Ref="o728"/>
+</c:Object>
+</o:TableSymbol>
+<o:TableSymbol Id="o719">
+<a:CreationDate>1697696150</a:CreationDate>
+<a:ModificationDate>1697696835</a:ModificationDate>
+<a:IconMode>-1</a:IconMode>
+<a:Rect>((28706,4798), (67614,24744))</a:Rect>
+<a:AutoAdjustToText>0</a:AutoAdjustToText>
+<a:LineColor>12615680</a:LineColor>
+<a:FillColor>16570034</a:FillColor>
+<a:ShadowColor>12632256</a:ShadowColor>
+<a:FontList>STRN 0 Courier New,11,N
+DISPNAME 0 Courier New,11,N
+OWNRDISPNAME 0 Courier New,11,N
+Columns 0 Courier New,11,N
+TablePkColumns 255 Courier New,11,N
+TableFkColumns 16711680 Courier New,11,N
+Keys 0 Courier New,11,N
+Indexes 0 Courier New,11,N
+Triggers 0 Courier New,11,N
+LABL 0 Courier New,11,N</a:FontList>
+<a:BrushStyle>6</a:BrushStyle>
+<a:GradientFillMode>65</a:GradientFillMode>
+<a:GradientEndColor>16777215</a:GradientEndColor>
+<a:ManuallyResized>1</a:ManuallyResized>
+<c:Object>
+<o:Table Ref="o729"/>
+</c:Object>
+</o:TableSymbol>
+<o:TableSymbol Id="o718">
+<a:CreationDate>1697696692</a:CreationDate>
+<a:ModificationDate>1697696833</a:ModificationDate>
+<a:IconMode>-1</a:IconMode>
+<a:Rect>((73246,4688), (112154,24634))</a:Rect>
+<a:AutoAdjustToText>0</a:AutoAdjustToText>
+<a:LineColor>12615680</a:LineColor>
+<a:FillColor>16570034</a:FillColor>
+<a:ShadowColor>12632256</a:ShadowColor>
+<a:FontList>STRN 0 Courier New,11,N
+DISPNAME 0 Courier New,11,N
+OWNRDISPNAME 0 Courier New,11,N
+Columns 0 Courier New,11,N
+TablePkColumns 255 Courier New,11,N
+TableFkColumns 16711680 Courier New,11,N
+Keys 0 Courier New,11,N
+Indexes 0 Courier New,11,N
+Triggers 0 Courier New,11,N
+LABL 0 Courier New,11,N</a:FontList>
+<a:BrushStyle>6</a:BrushStyle>
+<a:GradientFillMode>65</a:GradientFillMode>
+<a:GradientEndColor>16777215</a:GradientEndColor>
+<a:ManuallyResized>1</a:ManuallyResized>
+<c:Object>
+<o:Table Ref="o730"/>
+</c:Object>
+</o:TableSymbol>
+</c:Symbols>
+</o:PhysicalDiagram>
+</c:PhysicalDiagrams>
+<c:DefaultDiagram>
+<o:PhysicalDiagram Ref="o713"/>
+</c:DefaultDiagram>
+<c:Tables>
+<o:Table Id="o727">
+<a:ObjectID>5D827FFE-E74B-4C3E-B2CB-A7C14DA41283</a:ObjectID>
+<a:Name>鍩硅鐝鍛樸�恇jgl_class_student_info銆�</a:Name>
+<a:Code>bjgl_class_student_info</a:Code>
+<a:CreationDate>1697695561</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697700642</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍩硅鐝鍛樸�恇jgl_class_student_user_info銆�</a:Comment>
+<a:TotalSavingCurrency/>
+<c:Columns>
+<o:Column Id="o731">
+<a:ObjectID>91B04019-309F-4B7A-9481-98B0969603A7</a:ObjectID>
+<a:Name>ID</a:Name>
+<a:Code>id</a:Code>
+<a:CreationDate>1697695561</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697695561</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>ID</a:Comment>
+<a:DataType>VARCHAR(32)</a:DataType>
+<a:Length>32</a:Length>
+<a:Mandatory>1</a:Mandatory>
+</o:Column>
+<o:Column Id="o732">
+<a:ObjectID>C1BBE617-6177-4772-A224-9539693569AB</a:ObjectID>
+<a:Name>鎵嬫満鍙�</a:Name>
+<a:Code>phone</a:Code>
+<a:CreationDate>1697695825</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697695847</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鎵嬫満鍙�</a:Comment>
+<a:DataType>VARCHAR(32)</a:DataType>
+<a:Length>32</a:Length>
+</o:Column>
+<o:Column Id="o733">
+<a:ObjectID>28198A51-66A4-426E-8F26-1B0091054970</a:ObjectID>
+<a:Name>鎵嬫満鍙疯劚鏁忓鐞�</a:Name>
+<a:Code>phone_desen</a:Code>
+<a:CreationDate>1697695825</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697695847</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鎵嬫満鍙疯劚鏁忓鐞�</a:Comment>
+<a:DataType>VARCHAR(32)</a:DataType>
+<a:Length>32</a:Length>
+</o:Column>
+<o:Column Id="o734">
+<a:ObjectID>EEE35501-6E1B-4C88-A9FD-711F6FFBA5B8</a:ObjectID>
+<a:Name>韬唤璇佸彿</a:Name>
+<a:Code>card_no</a:Code>
+<a:CreationDate>1697695825</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697695847</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>韬唤璇佸彿</a:Comment>
+<a:DataType>VARCHAR(32)</a:DataType>
+<a:Length>32</a:Length>
+</o:Column>
+<o:Column Id="o735">
+<a:ObjectID>2C0BBB06-0198-4FAF-A099-721972C6BD38</a:ObjectID>
+<a:Name>韬唤璇佸彿鑴辨晱澶勭悊</a:Name>
+<a:Code>card_no_desen</a:Code>
+<a:CreationDate>1697695825</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697695847</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>韬唤璇佸彿鑴辨晱澶勭悊</a:Comment>
+<a:DataType>VARCHAR(32)</a:DataType>
+<a:Length>32</a:Length>
+</o:Column>
+<o:Column Id="o736">
+<a:ObjectID>6A4A3E5F-D340-426D-AB42-767BEBC21EC2</a:ObjectID>
+<a:Name>鎬у埆</a:Name>
+<a:Code>sex</a:Code>
+<a:CreationDate>1697700599</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697700608</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鎬у埆銆�0鐢� 1濂� 2鏈煡銆�</a:Comment>
+<a:DataType>INT2</a:DataType>
+<a:Length>2</a:Length>
+</o:Column>
+<o:Column Id="o737">
+<a:ObjectID>E0581E08-D72C-409A-BE6D-7F3A421ACB43</a:ObjectID>
+<a:Name>鍛樺伐id</a:Name>
+<a:Code>user_id</a:Code>
+<a:CreationDate>1697695825</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697695847</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍛樺伐id</a:Comment>
+<a:DataType>INT8</a:DataType>
+<a:Length>8</a:Length>
+</o:Column>
+<o:Column Id="o738">
+<a:ObjectID>E59D9B1A-6975-45A9-91AA-FC2595D9DB7B</a:ObjectID>
+<a:Name>鍛樺伐濮撳悕銆愬鍛樺鍚嶃��</a:Name>
+<a:Code>user_name</a:Code>
+<a:CreationDate>1697695825</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697695876</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍛樺伐濮撳悕銆愬鍛樺鍚嶃��</a:Comment>
+<a:DataType>VARCHAR(50)</a:DataType>
+<a:Length>50</a:Length>
+</o:Column>
+<o:Column Id="o739">
+<a:ObjectID>23691248-D088-4805-A2D9-C202D7755749</a:ObjectID>
+<a:Name>鐝骇id</a:Name>
+<a:Code>class_info_id</a:Code>
+<a:CreationDate>1697695561</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697695561</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鐝骇id</a:Comment>
+<a:DataType>VARCHAR(32)</a:DataType>
+<a:Length>32</a:Length>
+</o:Column>
+<o:Column Id="o740">
+<a:ObjectID>BAC333E1-20AD-4848-ACB5-2B9ABB12C07C</a:ObjectID>
+<a:Name>鍗曚綅id</a:Name>
+<a:Code>org_id</a:Code>
+<a:CreationDate>1697695951</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697695989</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍗曚綅id</a:Comment>
+<a:DataType>INT8</a:DataType>
+<a:Length>8</a:Length>
+</o:Column>
+<o:Column Id="o741">
+<a:ObjectID>909082E6-C03C-431D-8F3E-F01DDE5E5861</a:ObjectID>
+<a:Name>鍗曚綅鍚嶇О</a:Name>
+<a:Code>org_name</a:Code>
+<a:CreationDate>1697700608</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697700659</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍗曚綅鍚嶇О</a:Comment>
+<a:DataType>VARCHAR(200)</a:DataType>
+<a:Length>200</a:Length>
+</o:Column>
+<o:Column Id="o742">
+<a:ObjectID>34F12F45-D44E-4210-9129-35AAE3FB8F6F</a:ObjectID>
+<a:Name>鍒涘缓浜�</a:Name>
+<a:Code>create_user_id</a:Code>
+<a:CreationDate>1697695561</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697695561</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍒涘缓浜�</a:Comment>
+<a:DataType>INT8</a:DataType>
+<a:Length>8</a:Length>
+</o:Column>
+<o:Column Id="o743">
+<a:ObjectID>4AA45CA4-A24B-4CBF-A70F-E25F29E734FB</a:ObjectID>
+<a:Name>鍒涘缓浜哄悕绉�</a:Name>
+<a:Code>create_user_name</a:Code>
+<a:CreationDate>1697695561</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697695561</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍒涘缓浜哄悕绉�</a:Comment>
+<a:DataType>VARCHAR(50)</a:DataType>
+<a:Length>50</a:Length>
+</o:Column>
+<o:Column Id="o744">
+<a:ObjectID>4B3EC751-08B8-49AB-B31C-95C44DD3B784</a:ObjectID>
+<a:Name>鍒涘缓鏃堕棿</a:Name>
+<a:Code>create_time</a:Code>
+<a:CreationDate>1697695561</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697695561</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍒涘缓鏃堕棿</a:Comment>
+<a:DataType>INT8</a:DataType>
+<a:Length>8</a:Length>
+</o:Column>
+<o:Column Id="o745">
+<a:ObjectID>DC2D1F5E-4FF9-4D64-93EE-7990E17126D7</a:ObjectID>
+<a:Name>鏈�鍚庢洿鏂颁汉</a:Name>
+<a:Code>update_user_id</a:Code>
+<a:CreationDate>1697695561</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697695561</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鏈�鍚庢洿鏂颁汉</a:Comment>
+<a:DataType>INT8</a:DataType>
+<a:Length>8</a:Length>
+</o:Column>
+<o:Column Id="o746">
+<a:ObjectID>D93A2344-9F1B-447B-AEAE-1ADF5A056917</a:ObjectID>
+<a:Name>鏇存柊浜哄悕绉�</a:Name>
+<a:Code>update_user_name</a:Code>
+<a:CreationDate>1697695561</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697695561</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鏇存柊浜哄悕绉�</a:Comment>
+<a:DataType>VARCHAR(50)</a:DataType>
+<a:Length>50</a:Length>
+</o:Column>
+<o:Column Id="o747">
+<a:ObjectID>F36ED1AE-3FE9-4F62-B29B-2D3E43D95BCA</a:ObjectID>
+<a:Name>鏈�鍚庢洿鏂版椂闂�</a:Name>
+<a:Code>update_time</a:Code>
+<a:CreationDate>1697695561</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697695561</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鏈�鍚庢洿鏂版椂闂�</a:Comment>
+<a:DataType>INT8</a:DataType>
+<a:Length>8</a:Length>
+</o:Column>
+</c:Columns>
+<c:Keys>
+<o:Key Id="o748">
+<a:ObjectID>1B65D1A4-6D6B-4C5B-8EFC-466405716A6A</a:ObjectID>
+<a:Name>Key_1</a:Name>
+<a:Code>Key_1</a:Code>
+<a:CreationDate>1697695561</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697695561</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<c:Key.Columns>
+<o:Column Ref="o731"/>
+</c:Key.Columns>
+</o:Key>
+</c:Keys>
+<c:PrimaryKey>
+<o:Key Ref="o748"/>
+</c:PrimaryKey>
+</o:Table>
+<o:Table Id="o728">
+<a:ObjectID>5941322C-B06A-4BB0-9295-B0F3AEBD4E10</a:ObjectID>
+<a:Name>鍩硅鐝姤鍚嶆姤鍒扮鐞嗐�恇jgl_class_user_register銆�</a:Name>
+<a:Code>bjgl_class_user_register</a:Code>
+<a:CreationDate>1697695786</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697700478</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍩硅鐝姤鍚嶆姤鍒扮鐞嗐�恇jgl_class_user_register銆�</a:Comment>
+<a:TotalSavingCurrency/>
+<c:Columns>
+<o:Column Id="o749">
+<a:ObjectID>1F111538-3E44-48A3-8389-B4E1175D607C</a:ObjectID>
+<a:Name>ID</a:Name>
+<a:Code>id</a:Code>
+<a:CreationDate>1697695786</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697695786</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>ID</a:Comment>
+<a:DataType>VARCHAR(32)</a:DataType>
+<a:Length>32</a:Length>
+<a:Mandatory>1</a:Mandatory>
+</o:Column>
+<o:Column Id="o750">
+<a:ObjectID>B0586BBA-77F4-4032-BF98-872B65BDB411</a:ObjectID>
+<a:Name>鎵嬫満鍙�</a:Name>
+<a:Code>phone</a:Code>
+<a:CreationDate>1697697671</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697697728</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鎵嬫満鍙�</a:Comment>
+<a:DataType>VARCHAR(32)</a:DataType>
+<a:Length>32</a:Length>
+</o:Column>
+<o:Column Id="o751">
+<a:ObjectID>B57911A6-0403-4C92-99EE-8D0093E8FAA5</a:ObjectID>
+<a:Name>鎵嬫満鍙疯劚鏁忓鐞�</a:Name>
+<a:Code>phone_desen</a:Code>
+<a:CreationDate>1697697671</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697697728</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鎵嬫満鍙疯劚鏁忓鐞�</a:Comment>
+<a:DataType>VARCHAR(32)</a:DataType>
+<a:Length>32</a:Length>
+</o:Column>
+<o:Column Id="o752">
+<a:ObjectID>959291A8-466C-4E70-995D-7A08F00E41A9</a:ObjectID>
+<a:Name>韬唤璇佸彿</a:Name>
+<a:Code>card_no</a:Code>
+<a:CreationDate>1697697671</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697697728</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>韬唤璇佸彿</a:Comment>
+<a:DataType>VARCHAR(32)</a:DataType>
+<a:Length>32</a:Length>
+</o:Column>
+<o:Column Id="o753">
+<a:ObjectID>29B00149-09ED-4ED8-B6C4-10C3F02E4A45</a:ObjectID>
+<a:Name>韬唤璇佸彿鑴辨晱澶勭悊</a:Name>
+<a:Code>card_no_desen</a:Code>
+<a:CreationDate>1697697671</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697697728</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>韬唤璇佸彿鑴辨晱澶勭悊</a:Comment>
+<a:DataType>VARCHAR(32)</a:DataType>
+<a:Length>32</a:Length>
+</o:Column>
+<o:Column Id="o754">
+<a:ObjectID>17F30B6A-09A0-4003-80E2-C566C8F5D25B</a:ObjectID>
+<a:Name>鍛樺伐id</a:Name>
+<a:Code>user_id</a:Code>
+<a:CreationDate>1697697671</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697697728</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍛樺伐id</a:Comment>
+<a:DataType>INT8</a:DataType>
+<a:Length>8</a:Length>
+</o:Column>
+<o:Column Id="o755">
+<a:ObjectID>BEAAD6C5-55A4-4B5F-BE67-BF8CB9796A50</a:ObjectID>
+<a:Name>鍛樺伐濮撳悕</a:Name>
+<a:Code>user_name</a:Code>
+<a:CreationDate>1697697671</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697697752</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍛樺伐濮撳悕</a:Comment>
+<a:DataType>VARCHAR(50)</a:DataType>
+<a:Length>50</a:Length>
+</o:Column>
+<o:Column Id="o756">
+<a:ObjectID>F899CCEB-CDA0-4EC6-8318-8D0F2C605C65</a:ObjectID>
+<a:Name>鍗曚綅id</a:Name>
+<a:Code>org_id</a:Code>
+<a:CreationDate>1697697671</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697697728</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍗曚綅id</a:Comment>
+<a:DataType>INT8</a:DataType>
+<a:Length>8</a:Length>
+</o:Column>
+<o:Column Id="o757">
+<a:ObjectID>5F20B858-234A-4AA2-B4C2-CAAE04BE5B85</a:ObjectID>
+<a:Name>鍗曚綅鍚嶇О</a:Name>
+<a:Code>org_name</a:Code>
+<a:CreationDate>1697698390</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697698526</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍗曚綅鍚嶇О</a:Comment>
+<a:DataType>VARCHAR(200)</a:DataType>
+<a:Length>200</a:Length>
+</o:Column>
+<o:Column Id="o758">
+<a:ObjectID>2B0BF400-0F2D-4714-8BBC-269908629F6F</a:ObjectID>
+<a:Name>鎬у埆</a:Name>
+<a:Code>sex</a:Code>
+<a:CreationDate>1697699931</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697699996</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鎬у埆銆�0鐢� 1濂� 2鏈煡銆�</a:Comment>
+<a:DataType>INT2</a:DataType>
+<a:Length>2</a:Length>
+</o:Column>
+<o:Column Id="o759">
+<a:ObjectID>254F5C21-EEBC-4E0B-9C5F-18462945CC39</a:ObjectID>
+<a:Name>鍒涘缓浜�</a:Name>
+<a:Code>create_user_id</a:Code>
+<a:CreationDate>1697697774</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697697781</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍒涘缓浜�</a:Comment>
+<a:DataType>INT8</a:DataType>
+<a:Length>8</a:Length>
+</o:Column>
+<o:Column Id="o760">
+<a:ObjectID>F7524121-A2F3-4F6D-A270-3F9F5E07C562</a:ObjectID>
+<a:Name>鍒涘缓浜哄悕绉�</a:Name>
+<a:Code>create_user_name</a:Code>
+<a:CreationDate>1697697774</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697697781</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍒涘缓浜哄悕绉�</a:Comment>
+<a:DataType>VARCHAR(50)</a:DataType>
+<a:Length>50</a:Length>
+</o:Column>
+<o:Column Id="o761">
+<a:ObjectID>133AE119-FC3D-42C1-8985-9DCCFE2AB601</a:ObjectID>
+<a:Name>鍒涘缓鏃堕棿</a:Name>
+<a:Code>create_time</a:Code>
+<a:CreationDate>1697697774</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697697781</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍒涘缓鏃堕棿</a:Comment>
+<a:DataType>INT8</a:DataType>
+<a:Length>8</a:Length>
+</o:Column>
+<o:Column Id="o762">
+<a:ObjectID>2C849935-B747-48C7-A0BC-5B2B9A90A4D7</a:ObjectID>
+<a:Name>瀹℃牳浜�</a:Name>
+<a:Code>audit_user_id</a:Code>
+<a:CreationDate>1697695786</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697700224</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>瀹℃牳浜�</a:Comment>
+<a:DataType>INT8</a:DataType>
+<a:Length>8</a:Length>
+</o:Column>
+<o:Column Id="o763">
+<a:ObjectID>0FADFED6-9664-42CF-BFC0-C535E9C09A56</a:ObjectID>
+<a:Name>瀹℃牳鍚嶇О</a:Name>
+<a:Code>audit_user_name</a:Code>
+<a:CreationDate>1697695786</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697700224</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>瀹℃牳鍚嶇О</a:Comment>
+<a:DataType>VARCHAR(50)</a:DataType>
+<a:Length>50</a:Length>
+</o:Column>
+<o:Column Id="o764">
+<a:ObjectID>798EE992-9E58-4A3E-86DE-AB32BD69505D</a:ObjectID>
+<a:Name>瀹℃牳鏃堕棿</a:Name>
+<a:Code>audit_time</a:Code>
+<a:CreationDate>1697695786</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697700224</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>瀹℃牳鏃堕棿</a:Comment>
+<a:DataType>INT8</a:DataType>
+<a:Length>8</a:Length>
+</o:Column>
+<o:Column Id="o765">
+<a:ObjectID>E0010DAF-CE84-4898-BA05-6379BF5BC051</a:ObjectID>
+<a:Name>鍩硅鐝璱d</a:Name>
+<a:Code>class_info_id</a:Code>
+<a:CreationDate>1697699080</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697699104</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍩硅鐝璱d</a:Comment>
+<a:DataType>VARCHAR(32)</a:DataType>
+<a:Length>32</a:Length>
+</o:Column>
+<o:Column Id="o766">
+<a:ObjectID>FF85B6BA-02D4-4431-860C-02E6A709CD93</a:ObjectID>
+<a:Name>鎶ュ悕锛堢‘璁ょ姸鎬侊級銆�0锛氭湭鎶ュ悕銆�1锛氬凡鎶ュ悕銆�</a:Name>
+<a:Code>confirm_status</a:Code>
+<a:CreationDate>1697700375</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697700466</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鎶ュ悕锛堢‘璁ょ姸鎬侊級銆�0锛氭湭鎶ュ悕銆�1锛氬凡鎶ュ悕銆�</a:Comment>
+</o:Column>
+<o:Column Id="o767">
+<a:ObjectID>7C42E701-1608-4D47-BCBF-DBC183DE705D</a:ObjectID>
+<a:Name>鎶ュ埌銆�0锛氭湭鎶ュ埌銆�1锛氬凡鎶ュ埌銆�</a:Name>
+<a:Code>report_status</a:Code>
+<a:CreationDate>1697700375</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697700471</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鎶ュ埌銆�0锛氭湭鎶ュ埌銆�1锛氬凡鎶ュ埌銆�</a:Comment>
+</o:Column>
+<o:Column Id="o768">
+<a:ObjectID>10689CA6-7E68-401E-A16A-E305DC1F2AAF</a:ObjectID>
+<a:Name>鎶ュ悕鏃堕棿锛堢‘璁ゆ椂闂达級</a:Name>
+<a:Code>confirm_time</a:Code>
+<a:CreationDate>1697699798</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697699931</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鎶ュ悕鏃堕棿锛堢‘璁ゆ椂闂达級</a:Comment>
+<a:DataType>INT8</a:DataType>
+<a:Length>8</a:Length>
+</o:Column>
+<o:Column Id="o769">
+<a:ObjectID>5D83430D-CD40-41CA-B323-36641ABD1DD3</a:ObjectID>
+<a:Name>鎶ュ埌鏃堕棿</a:Name>
+<a:Code>report_time</a:Code>
+<a:CreationDate>1697700009</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697700089</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鎶ュ埌鏃堕棿</a:Comment>
+<a:DataType>INT8</a:DataType>
+<a:Length>8</a:Length>
+</o:Column>
+<o:Column Id="o770">
+<a:ObjectID>C0A8EE98-A045-4BEF-8D03-3E55EBA9125D</a:ObjectID>
+<a:Name>瀹℃牳鐘舵�併��0锛氭湭瀹℃牳銆�1锛氶�氳繃瀹℃牳銆�2锛氶��鎶ャ��</a:Name>
+<a:Code>audit_status</a:Code>
+<a:CreationDate>1697700137</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697700343</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>瀹℃牳鐘舵�併��0锛氭湭瀹℃牳銆�1锛氶�氳繃瀹℃牳銆�2锛氶��鎶ャ��</a:Comment>
+</o:Column>
+<o:Column Id="o771">
+<a:ObjectID>54A5DA7D-5204-4F4D-A949-CBE7872BBE16</a:ObjectID>
+<a:Name>璁″垝绫诲瀷銆�1锛氳鍒掑唴銆�0锛氳鍒掑銆�</a:Name>
+<a:Code>plan_type</a:Code>
+<a:CreationDate>1697700224</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697700343</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>璁″垝绫诲瀷銆�1锛氳鍒掑唴銆�0锛氳鍒掑銆�</a:Comment>
+</o:Column>
+</c:Columns>
+<c:Keys>
+<o:Key Id="o772">
+<a:ObjectID>42E45127-4248-42A4-8D07-8B92F275C9A9</a:ObjectID>
+<a:Name>Key_1</a:Name>
+<a:Code>Key_1</a:Code>
+<a:CreationDate>1697695786</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697695786</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<c:Key.Columns>
+<o:Column Ref="o749"/>
+</c:Key.Columns>
+</o:Key>
+</c:Keys>
+<c:PrimaryKey>
+<o:Key Ref="o772"/>
+</c:PrimaryKey>
+</o:Table>
+<o:Table Id="o729">
+<a:ObjectID>1C6802CF-02A4-4AFA-8D51-CDC9219DB768</a:ObjectID>
+<a:Name>鍩硅鐝鍛樺娲俱�恇jgl_class_student_committee銆�</a:Name>
+<a:Code>bjgl_class_student_committee</a:Code>
+<a:CreationDate>1697696150</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697696928</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍩硅鐝鍛樺娲俱�恇jgl_class_student_committee銆�</a:Comment>
+<a:TotalSavingCurrency/>
+<c:Columns>
+<o:Column Id="o773">
+<a:ObjectID>15A6F555-7024-4972-9893-0DD019E6A0D5</a:ObjectID>
+<a:Name>ID</a:Name>
+<a:Code>id</a:Code>
+<a:CreationDate>1697696150</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697696150</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>ID</a:Comment>
+<a:DataType>VARCHAR(32)</a:DataType>
+<a:Length>32</a:Length>
+<a:Mandatory>1</a:Mandatory>
+</o:Column>
+<o:Column Id="o774">
+<a:ObjectID>C5F95EEA-A3E6-46B9-BDE6-B66BE5B11B8F</a:ObjectID>
+<a:Name>鍩硅鐝鍛樸�恇jgl_class_student_info銆�</a:Name>
+<a:Code>student_info_id</a:Code>
+<a:CreationDate>1697696150</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697696928</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍩硅鐝鍛樸�恇jgl_class_student_info銆�</a:Comment>
+<a:DataType>VARCHAR(32)</a:DataType>
+<a:Length>32</a:Length>
+</o:Column>
+<o:Column Id="o775">
+<a:ObjectID>9CF24B26-78DD-4ADC-AC48-3B187D258FCB</a:ObjectID>
+<a:Name>鍛樺伐id</a:Name>
+<a:Code>user_id</a:Code>
+<a:CreationDate>1697696520</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697696547</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍛樺伐id</a:Comment>
+<a:DataType>INT8</a:DataType>
+<a:Length>8</a:Length>
+</o:Column>
+<o:Column Id="o776">
+<a:ObjectID>92A00272-4CC0-46C7-AA4B-A6199D2F87EC</a:ObjectID>
+<a:Name>鍛樺伐濮撳悕銆愬鍛樺鍚嶃��</a:Name>
+<a:Code>user_name</a:Code>
+<a:CreationDate>1697696150</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697696150</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍛樺伐濮撳悕銆愬鍛樺鍚嶃��</a:Comment>
+<a:DataType>VARCHAR(50)</a:DataType>
+<a:Length>50</a:Length>
+</o:Column>
+<o:Column Id="o777">
+<a:ObjectID>CD359DD5-6AF8-4726-9969-7CE36238106F</a:ObjectID>
+<a:Name>鐝骇id</a:Name>
+<a:Code>class_info_id</a:Code>
+<a:CreationDate>1697696150</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697696150</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鐝骇id</a:Comment>
+<a:DataType>VARCHAR(32)</a:DataType>
+<a:Length>32</a:Length>
+</o:Column>
+<o:Column Id="o778">
+<a:ObjectID>7FFE60D1-B7A3-4164-836E-3CBEB07EE613</a:ObjectID>
+<a:Name>鍒涘缓浜�</a:Name>
+<a:Code>create_user_id</a:Code>
+<a:CreationDate>1697696150</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697696150</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍒涘缓浜�</a:Comment>
+<a:DataType>INT8</a:DataType>
+<a:Length>8</a:Length>
+</o:Column>
+<o:Column Id="o779">
+<a:ObjectID>2040210D-27C9-4A9B-B0BE-30804411850F</a:ObjectID>
+<a:Name>鍒涘缓浜哄悕绉�</a:Name>
+<a:Code>create_user_name</a:Code>
+<a:CreationDate>1697696150</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697696150</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍒涘缓浜哄悕绉�</a:Comment>
+<a:DataType>VARCHAR(50)</a:DataType>
+<a:Length>50</a:Length>
+</o:Column>
+<o:Column Id="o780">
+<a:ObjectID>062FA000-6445-41EC-9568-112912E1BF09</a:ObjectID>
+<a:Name>鍒涘缓鏃堕棿</a:Name>
+<a:Code>create_time</a:Code>
+<a:CreationDate>1697696150</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697696150</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍒涘缓鏃堕棿</a:Comment>
+<a:DataType>INT8</a:DataType>
+<a:Length>8</a:Length>
+</o:Column>
+<o:Column Id="o781">
+<a:ObjectID>B708F34A-2905-45FD-B08F-8F0FDFFA9F2E</a:ObjectID>
+<a:Name>鏈�鍚庢洿鏂颁汉</a:Name>
+<a:Code>update_user_id</a:Code>
+<a:CreationDate>1697696150</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697696150</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鏈�鍚庢洿鏂颁汉</a:Comment>
+<a:DataType>INT8</a:DataType>
+<a:Length>8</a:Length>
+</o:Column>
+<o:Column Id="o782">
+<a:ObjectID>56CF1EE6-9514-4EE3-AD35-3A621F247FC8</a:ObjectID>
+<a:Name>鏇存柊浜哄悕绉�</a:Name>
+<a:Code>update_user_name</a:Code>
+<a:CreationDate>1697696150</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697696150</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鏇存柊浜哄悕绉�</a:Comment>
+<a:DataType>VARCHAR(50)</a:DataType>
+<a:Length>50</a:Length>
+</o:Column>
+<o:Column Id="o783">
+<a:ObjectID>0B538845-C207-4E9F-9ECD-413D2F75E6EC</a:ObjectID>
+<a:Name>鏇存柊鏃堕棿</a:Name>
+<a:Code>update_time</a:Code>
+<a:CreationDate>1697696150</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697696473</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鏈�鍚庢洿鏂版椂闂�</a:Comment>
+<a:DataType>INT8</a:DataType>
+<a:Length>8</a:Length>
+</o:Column>
+<o:Column Id="o784">
+<a:ObjectID>B91E0663-813D-41CE-85A1-0F9D92813A83</a:ObjectID>
+<a:Name>鍩硅鐝鍛樼鐞嗐�恇jgl_class_committee_manage銆�</a:Name>
+<a:Code>committee_id</a:Code>
+<a:CreationDate>1697696887</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697696942</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍩硅鐝鍛樼鐞嗐�恇jgl_class_committee_manage銆�</a:Comment>
+<a:DataType>VARCHAR(32)</a:DataType>
+<a:Length>32</a:Length>
+</o:Column>
+</c:Columns>
+<c:Keys>
+<o:Key Id="o785">
+<a:ObjectID>52300542-DFA0-4CA8-B19A-F751CC5B3267</a:ObjectID>
+<a:Name>Key_1</a:Name>
+<a:Code>Key_1</a:Code>
+<a:CreationDate>1697696150</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697696150</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<c:Key.Columns>
+<o:Column Ref="o773"/>
+</c:Key.Columns>
+</o:Key>
+</c:Keys>
+<c:PrimaryKey>
+<o:Key Ref="o785"/>
+</c:PrimaryKey>
+</o:Table>
+<o:Table Id="o730">
+<a:ObjectID>BBAF6E32-972C-4603-A255-28246AD12DFC</a:ObjectID>
+<a:Name>鍩硅鐝鍛樼鐞嗐�恇jgl_class_committee_manage銆�</a:Name>
+<a:Code>bjgl_class_committee_manage</a:Code>
+<a:CreationDate>1697696692</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697697035</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍩硅鐝鍛樼鐞嗐�恇jgl_class_committee_manage銆�</a:Comment>
+<a:TotalSavingCurrency/>
+<c:Columns>
+<o:Column Id="o786">
+<a:ObjectID>5D0AEEC0-6B6A-41FB-9709-D9AE546EDF28</a:ObjectID>
+<a:Name>ID</a:Name>
+<a:Code>id</a:Code>
+<a:CreationDate>1697696692</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697696692</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>ID</a:Comment>
+<a:DataType>VARCHAR(32)</a:DataType>
+<a:Length>32</a:Length>
+<a:Mandatory>1</a:Mandatory>
+</o:Column>
+<o:Column Id="o787">
+<a:ObjectID>55E8D317-FC62-42B6-A381-B35B10DF9F54</a:ObjectID>
+<a:Name>绉拌皳</a:Name>
+<a:Code>committee_name</a:Code>
+<a:CreationDate>1697696701</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697696761</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>绉拌皳</a:Comment>
+<a:DataType>VARCHAR(50)</a:DataType>
+<a:Length>50</a:Length>
+</o:Column>
+<o:Column Id="o788">
+<a:ObjectID>F2F6B002-68DC-4B5E-B2B7-E8E0A748C8A6</a:ObjectID>
+<a:Name>鐝骇id</a:Name>
+<a:Code>class_info_id</a:Code>
+<a:CreationDate>1697696692</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697696692</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鐝骇id</a:Comment>
+<a:DataType>VARCHAR(32)</a:DataType>
+<a:Length>32</a:Length>
+</o:Column>
+<o:Column Id="o789">
+<a:ObjectID>42089A14-452C-417F-AFEE-2A6325182B3E</a:ObjectID>
+<a:Name>鐘舵�併��0锛氬惎鍔ㄣ��1锛氱鐢ㄣ��2锛氬垹闄ゃ��</a:Name>
+<a:Code>status</a:Code>
+<a:CreationDate>1697696996</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697697035</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鐘舵�併��0锛氬惎鍔ㄣ��1锛氱鐢ㄣ��2锛氬垹闄ゃ��</a:Comment>
+<a:DataType>INT2</a:DataType>
+<a:Length>2</a:Length>
+</o:Column>
+<o:Column Id="o790">
+<a:ObjectID>214AD96A-98CC-40DC-BE23-469526C96FC8</a:ObjectID>
+<a:Name>鍒涘缓浜�</a:Name>
+<a:Code>create_user_id</a:Code>
+<a:CreationDate>1697696692</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697696692</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍒涘缓浜�</a:Comment>
+<a:DataType>INT8</a:DataType>
+<a:Length>8</a:Length>
+</o:Column>
+<o:Column Id="o791">
+<a:ObjectID>03F4F064-71F4-4020-8672-231D75630C4F</a:ObjectID>
+<a:Name>鍒涘缓浜哄悕绉�</a:Name>
+<a:Code>create_user_name</a:Code>
+<a:CreationDate>1697696692</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697696692</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍒涘缓浜哄悕绉�</a:Comment>
+<a:DataType>VARCHAR(50)</a:DataType>
+<a:Length>50</a:Length>
+</o:Column>
+<o:Column Id="o792">
+<a:ObjectID>EDEB0D1D-8268-4106-86A2-1F46DA324433</a:ObjectID>
+<a:Name>鍒涘缓鏃堕棿</a:Name>
+<a:Code>create_time</a:Code>
+<a:CreationDate>1697696692</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697696692</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍒涘缓鏃堕棿</a:Comment>
+<a:DataType>INT8</a:DataType>
+<a:Length>8</a:Length>
+</o:Column>
+<o:Column Id="o793">
+<a:ObjectID>475CDB40-53D6-4507-A266-A75E3247A1F7</a:ObjectID>
+<a:Name>鏇存柊浜�</a:Name>
+<a:Code>update_user_id</a:Code>
+<a:CreationDate>1697696692</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697696799</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鏇存柊浜�</a:Comment>
+<a:DataType>INT8</a:DataType>
+<a:Length>8</a:Length>
+</o:Column>
+<o:Column Id="o794">
+<a:ObjectID>A8AACE83-4C02-4703-9BB6-F9E57CE08A1C</a:ObjectID>
+<a:Name>鏇存柊浜哄悕绉�</a:Name>
+<a:Code>update_user_name</a:Code>
+<a:CreationDate>1697696692</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697696692</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鏇存柊浜哄悕绉�</a:Comment>
+<a:DataType>VARCHAR(50)</a:DataType>
+<a:Length>50</a:Length>
+</o:Column>
+<o:Column Id="o795">
+<a:ObjectID>F837F570-6475-4CFE-BC4A-BA2B5AE6A5B4</a:ObjectID>
+<a:Name>鏇存柊鏃堕棿</a:Name>
+<a:Code>update_time</a:Code>
+<a:CreationDate>1697696692</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697696799</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鏇存柊鏃堕棿</a:Comment>
+<a:DataType>INT8</a:DataType>
+<a:Length>8</a:Length>
+</o:Column>
+</c:Columns>
+<c:Keys>
+<o:Key Id="o796">
+<a:ObjectID>8EBDF2D5-3EC6-4796-8019-72415FD5D807</a:ObjectID>
+<a:Name>Key_1</a:Name>
+<a:Code>Key_1</a:Code>
+<a:CreationDate>1697696692</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697696692</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<c:Key.Columns>
+<o:Column Ref="o786"/>
+</c:Key.Columns>
+</o:Key>
+</c:Keys>
+<c:PrimaryKey>
+<o:Key Ref="o796"/>
+</c:PrimaryKey>
+</o:Table>
+</c:Tables>
+<c:ChildExtendedDependencies>
+<o:ExtendedDependency Id="o720">
+<a:ObjectID>A300C208-69C7-4AE2-8AC8-D2C83AB5A166</a:ObjectID>
+<a:CreationDate>1697696960</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697696960</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<c:Object1>
+<o:Table Ref="o729"/>
+</c:Object1>
+<c:Object2>
+<o:Table Ref="o730"/>
+</c:Object2>
+</o:ExtendedDependency>
+<o:ExtendedDependency Id="o723">
+<a:ObjectID>35F5FD0D-65C7-4DFD-BF53-058842C05174</a:ObjectID>
+<a:CreationDate>1697696965</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697696965</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<c:Object1>
+<o:Table Ref="o727"/>
+</c:Object1>
+<c:Object2>
+<o:Table Ref="o729"/>
+</c:Object2>
+</o:ExtendedDependency>
+<o:ExtendedDependency Id="o726">
+<a:ObjectID>F3549798-4B6C-4025-B6A4-3772D48ECD68</a:ObjectID>
+<a:CreationDate>1697700503</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697700503</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<c:Object1>
+<o:Table Ref="o727"/>
+</c:Object1>
+<c:Object2>
+<o:Table Ref="o728"/>
+</c:Object2>
+</o:ExtendedDependency>
+</c:ChildExtendedDependencies>
+</o:Package>
+<o:Package Id="o797">
+<a:ObjectID>0A2CA843-FD6D-4A92-AEBF-2AF19FFA7284</a:ObjectID>
+<a:Name>鏃ョ▼绠$悊</a:Name>
+<a:Code>鏃ョ▼绠$悊</a:Code>
+<a:CreationDate>1697700747</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697701956</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<c:PhysicalDiagrams>
+<o:PhysicalDiagram Id="o798">
+<a:ObjectID>A5208983-4E0D-4EFA-8170-675D07AA5479</a:ObjectID>
+<a:Name>PhysicalDiagram_1</a:Name>
+<a:Code>PhysicalDiagram_1</a:Code>
+<a:CreationDate>1697700747</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697701956</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:DisplayPreferences>[DisplayPreferences]
+
+[DisplayPreferences\PDM]
+
+[DisplayPreferences\General]
+Adjust to text=Yes
+Snap Grid=No
+Constrain Labels=Yes
+Display Grid=No
+Show Page Delimiter=Yes
+Grid size=0
+Graphic unit=2
+Window color=255, 255, 255
+Background image=
+Background mode=8
+Watermark image=
+Watermark mode=8
+Show watermark on screen=No
+Gradient mode=0
+Gradient end color=255, 255, 255
+Show Swimlane=No
+SwimlaneVert=Yes
+TreeVert=No
+CompDark=0
+
+[DisplayPreferences\Object]
+Mode=0
+Trunc Length=80
+Word Length=80
+Word Text=!&quot;&quot;#$%&amp;&#39;()*+,-./:;&lt;=&gt;?@[\]^_`{|}~
+Shortcut IntIcon=Yes
+Shortcut IntLoct=Yes
+Shortcut IntFullPath=No
+Shortcut IntLastPackage=Yes
+Shortcut ExtIcon=Yes
+Shortcut ExtLoct=No
+Shortcut ExtFullPath=No
+Shortcut ExtLastPackage=Yes
+Shortcut ExtIncludeModl=Yes
+EObjShowStrn=Yes
+ExtendedObject.Comment=No
+ExtendedObject.IconPicture=No
+ExtendedObject_SymbolLayout=
+ELnkShowStrn=Yes
+ELnkShowName=Yes
+ExtendedLink_SymbolLayout=
+FileObject.Stereotype=No
+FileObject.DisplayName=Yes
+FileObject.LocationOrName=No
+FileObject.IconPicture=No
+FileObject.IconMode=Yes
+FileObject_SymbolLayout=
+PckgShowStrn=Yes
+Package.Comment=No
+Package.IconPicture=No
+Package_SymbolLayout=
+Display Model Version=Yes
+Table.Stereotype=Yes
+Table.DisplayName=Yes
+Table.OwnerDisplayName=No
+Table.Columns=Yes
+Table.Columns._Filter=&quot;All Columns&quot; PDMCOLNALL
+Table.Columns._Columns=Stereotype DataType KeyIndicator
+Table.Columns._Limit=-5
+Table.Keys=No
+Table.Keys._Columns=Stereotype Indicator
+Table.Indexes=No
+Table.Indexes._Columns=Stereotype
+Table.Triggers=No
+Table.Triggers._Columns=Stereotype
+Table.Comment=No
+Table.IconPicture=No
+Table_SymbolLayout=&lt;Form&gt;[CRLF] &lt;StandardAttribute Name=&quot;Stereotype&quot; Attribute=&quot;Stereotype&quot; Prefix=&quot;&amp;lt;&amp;lt;&quot; Suffix=&quot;&amp;gt;&amp;gt;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;ExclusiveChoice Name=&quot;Exclusive Choice&quot; Mandatory=&quot;Yes&quot; Display=&quot;HorizontalRadios&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Name&quot; Attribute=&quot;DisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;StandardAttribute Name=&quot;Owner and Name&quot; Attribute=&quot;OwnerDisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/ExclusiveChoice&gt;[CRLF] &lt;Separator Name=&quot;Separator&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Columns&quot; Collection=&quot;Columns&quot; Columns=&quot;Stereotype No\r\nDisplayName Yes\r\nDataType No\r\nSymbolDataType No &amp;quot;Domain or Data type&amp;quot;\r\nDomain No\r\nKeyIndicator No\r\nIndexIndicator No\r\nNullStatus No&quot; Filters=&quot;&amp;quot;All Columns&amp;quot;  PDMCOLNALL &amp;quot;&amp;quot;\r\n&amp;quot;PK Columns&amp;quot;  PDMCOLNPK &amp;quot;PRIM \&amp;quot;TRUE\&amp;quot; TRUE&amp;quot;\r\n&amp;quot;Key Columns&amp;quot;  PDMCOLNKEY &amp;quot;KEYS \&amp;quot;TRUE\&amp;quot; TRUE&amp;quot;&quot; HasLimit=&quot;Yes&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Keys&quot; Collection=&quot;Keys&quot; Columns=&quot;Stereotype No\r\nDisplayName Yes\r\nIndicator No&quot; HasLimit=&quot;No&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Indexes&quot; Collection=&quot;Indexes&quot; Columns=&quot;Stereotype No\r\nDisplayName Yes\r\nIndicator No&quot; HasLimit=&quot;No&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Triggers&quot; Collection=&quot;Triggers&quot; Columns=&quot;Stereotype No\r\nDisplayName Yes&quot; HasLimit=&quot;No&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Comment&quot; Attribute=&quot;Comment&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;LEFT&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Icon&quot; Attribute=&quot;IconPicture&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;Yes&quot; /&gt;[CRLF]&lt;/Form&gt;
+View.Stereotype=Yes
+View.DisplayName=Yes
+View.OwnerDisplayName=No
+View.Columns=Yes
+View.Columns._Columns=DisplayName
+View.Columns._Limit=-5
+View.TemporaryVTables=Yes
+View.Indexes=No
+View.Comment=No
+View.IconPicture=No
+View_SymbolLayout=&lt;Form&gt;[CRLF] &lt;StandardAttribute Name=&quot;Stereotype&quot; Attribute=&quot;Stereotype&quot; Prefix=&quot;&amp;lt;&amp;lt;&quot; Suffix=&quot;&amp;gt;&amp;gt;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;ExclusiveChoice Name=&quot;Exclusive Choice&quot; Mandatory=&quot;Yes&quot; Display=&quot;HorizontalRadios&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Name&quot; Attribute=&quot;DisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;StandardAttribute Name=&quot;Owner and Name&quot; Attribute=&quot;OwnerDisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/ExclusiveChoice&gt;[CRLF] &lt;Separator Name=&quot;Separator&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Columns&quot; Collection=&quot;Columns&quot; Columns=&quot;DisplayName No\r\nExpression No\r\nDataType No\r\nSymbolDataType No &amp;quot;Domain or Data type&amp;quot;\r\nIndexIndicator No&quot; HasLimit=&quot;Yes&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Tables&quot; Collection=&quot;TemporaryVTables&quot; Columns=&quot;Name Yes&quot; HasLimit=&quot;No&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Indexes&quot; Collection=&quot;Indexes&quot; Columns=&quot;DisplayName Yes&quot; HasLimit=&quot;No&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Comment&quot; Attribute=&quot;Comment&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;LEFT&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Icon&quot; Attribute=&quot;IconPicture&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;Yes&quot; /&gt;[CRLF]&lt;/Form&gt;
+Procedure.Stereotype=No
+Procedure.DisplayName=Yes
+Procedure.OwnerDisplayName=No
+Procedure.Comment=No
+Procedure.IconPicture=No
+Procedure_SymbolLayout=&lt;Form&gt;[CRLF] &lt;StandardAttribute Name=&quot;Stereotype&quot; Attribute=&quot;Stereotype&quot; Prefix=&quot;&amp;lt;&amp;lt;&quot; Suffix=&quot;&amp;gt;&amp;gt;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;ExclusiveChoice Name=&quot;Exclusive Choice&quot; Mandatory=&quot;Yes&quot; Display=&quot;HorizontalRadios&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Name&quot; Attribute=&quot;DisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;StandardAttribute Name=&quot;Owner and Name&quot; Attribute=&quot;OwnerDisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/ExclusiveChoice&gt;[CRLF] &lt;Separator Name=&quot;Separator&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Comment&quot; Attribute=&quot;Comment&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;LEFT&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Icon&quot; Attribute=&quot;IconPicture&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;Yes&quot; /&gt;[CRLF]&lt;/Form&gt;
+Reference.Cardinality=No
+Reference.ImplementationType=No
+Reference.ChildRole=Yes
+Reference.Stereotype=Yes
+Reference.DisplayName=No
+Reference.ForeignKeyConstraintName=Yes
+Reference.JoinExpression=No
+Reference.Integrity=No
+Reference.ParentRole=Yes
+Reference_SymbolLayout=&lt;Form&gt;[CRLF] &lt;Form Name=&quot;Source&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Cardinality&quot; Attribute=&quot;Cardinality&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;StandardAttribute Name=&quot;Implementation&quot; Attribute=&quot;ImplementationType&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;StandardAttribute Name=&quot;Child Role&quot; Attribute=&quot;ChildRole&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/Form&gt;[CRLF] &lt;Form Name=&quot;Center&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Stereotype&quot; Attribute=&quot;Stereotype&quot; Prefix=&quot;&amp;lt;&amp;lt;&quot; Suffix=&quot;&amp;gt;&amp;gt;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;ExclusiveChoice Name=&quot;Exclusive Choice&quot; Mandatory=&quot;No&quot; Display=&quot;HorizontalRadios&quot; &gt;[CRLF]   &lt;StandardAttribute Name=&quot;Name&quot; Attribute=&quot;DisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]   &lt;StandardAttribute Name=&quot;Cons&amp;amp;traint Name&quot; Attribute=&quot;ForeignKeyConstraintName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;Cons&amp;amp;traint Name&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]   &lt;StandardAttribute Name=&quot;Join&quot; Attribute=&quot;JoinExpression&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;Join&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;/ExclusiveChoice&gt;[CRLF]  &lt;StandardAttribute Name=&quot;Referential integrity&quot; Attribute=&quot;Integrity&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;Referential integrity&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/Form&gt;[CRLF] &lt;Form Name=&quot;Destination&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Parent Role&quot; Attribute=&quot;ParentRole&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/Form&gt;[CRLF]&lt;/Form&gt;
+ViewReference.ChildRole=Yes
+ViewReference.Stereotype=Yes
+ViewReference.DisplayName=No
+ViewReference.JoinExpression=No
+ViewReference.ParentRole=Yes
+ViewReference_SymbolLayout=&lt;Form&gt;[CRLF] &lt;Form Name=&quot;Source&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Child Role&quot; Attribute=&quot;ChildRole&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/Form&gt;[CRLF] &lt;Form Name=&quot;Center&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Stereotype&quot; Attribute=&quot;Stereotype&quot; Prefix=&quot;&amp;lt;&amp;lt;&quot; Suffix=&quot;&amp;gt;&amp;gt;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;ExclusiveChoice Name=&quot;Exclusive Choice&quot; Mandatory=&quot;No&quot; Display=&quot;HorizontalRadios&quot; &gt;[CRLF]   &lt;StandardAttribute Name=&quot;Name&quot; Attribute=&quot;DisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]   &lt;StandardAttribute Name=&quot;Join Expression&quot; Attribute=&quot;JoinExpression&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;/ExclusiveChoice&gt;[CRLF] &lt;/Form&gt;[CRLF] &lt;Form Name=&quot;Destination&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Parent Role&quot; Attribute=&quot;ParentRole&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/Form&gt;[CRLF]&lt;/Form&gt;
+
+[DisplayPreferences\Symbol]
+
+[DisplayPreferences\Symbol\FRMEOBJ]
+STRNFont=Arial,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial,8,N
+DISPNAMEFont color=0, 0, 0
+LABLFont=Arial,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=6000
+Height=2000
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=64
+Brush gradient color=192 192 192
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 255 128 128
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\FRMELNK]
+CENTERFont=Arial,8,N
+CENTERFont color=0, 0, 0
+Line style=2
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 128 255
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\FILO]
+OBJSTRNFont=鏂板畫浣�,8,N
+OBJSTRNFont color=0, 0, 0
+DISPNAMEFont=鏂板畫浣�,8,N
+DISPNAMEFont color=0, 0, 0
+LCNMFont=鏂板畫浣�,8,N
+LCNMFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=Yes
+Keep center=Yes
+Keep size=No
+Width=2400
+Height=2400
+Brush color=255 255 255
+Fill Color=No
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 0 255
+Shadow color=192 192 192
+Shadow=-1
+
+[DisplayPreferences\Symbol\PDMPCKG]
+STRNFont=Arial,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial,8,N
+DISPNAMEFont color=0, 0, 0
+LABLFont=Arial,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4800
+Height=3600
+Brush color=255 255 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 178 178 178
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\TABL]
+STRNFont=鏂板畫浣�,20,N
+STRNFont color=0 0 0
+DISPNAMEFont=鏂板畫浣�,8,N
+DISPNAMEFont color=0 0 0
+OWNRDISPNAMEFont=鏂板畫浣�,8,N
+OWNRDISPNAMEFont color=0 0 0
+ColumnsFont=鏂板畫浣�,8,N
+ColumnsFont color=0 0 0
+TablePkColumnsFont=鏂板畫浣�,8,U
+TablePkColumnsFont color=0 0 0
+TableFkColumnsFont=鏂板畫浣�,8,N
+TableFkColumnsFont color=0 0 0
+KeysFont=鏂板畫浣�,8,N
+KeysFont color=0 0 0
+IndexesFont=鏂板畫浣�,8,N
+IndexesFont color=0 0 0
+TriggersFont=鏂板畫浣�,8,N
+TriggersFont color=0 0 0
+LABLFont=鏂板畫浣�,8,N
+LABLFont color=0 0 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=15000
+Height=7500
+Brush color=178 214 252
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\VIEW]
+STRNFont=Arial,8,N
+STRNFont color=0 0 0
+DISPNAMEFont=Arial,8,N
+DISPNAMEFont color=0 0 0
+OWNRDISPNAMEFont=鏂板畫浣�,8,N
+OWNRDISPNAMEFont color=0, 0, 0
+ColumnsFont=Arial,8,N
+ColumnsFont color=0 0 0
+TablePkColumnsFont=鏂板畫浣�,8,U
+TablePkColumnsFont color=0, 0, 0
+TableFkColumnsFont=鏂板畫浣�,8,N
+TableFkColumnsFont color=0, 0, 0
+TemporaryVTablesFont=Arial,8,N
+TemporaryVTablesFont color=0 0 0
+IndexesFont=Arial,8,N
+IndexesFont color=0 0 0
+LABLFont=Arial,8,N
+LABLFont color=0 0 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4800
+Height=4000
+Brush color=233 202 131
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 128 128
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\PROC]
+STRNFont=Arial,8,N
+STRNFont color=0 0 0
+DISPNAMEFont=Arial,8,N
+DISPNAMEFont color=0 0 0
+OWNRDISPNAMEFont=鏂板畫浣�,8,N
+OWNRDISPNAMEFont color=0, 0, 0
+LABLFont=Arial,8,N
+LABLFont color=0 0 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4000
+Height=1000
+Brush color=255 255 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 108 0
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\REFR]
+SOURCEFont=鏂板畫浣�,8,N
+SOURCEFont color=0, 0, 0
+CENTERFont=鏂板畫浣�,8,N
+CENTERFont color=0, 0, 0
+DESTINATIONFont=鏂板畫浣�,8,N
+DESTINATIONFont color=0, 0, 0
+Line style=2
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 0 64
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\VREF]
+SOURCEFont=鏂板畫浣�,8,N
+SOURCEFont color=0, 0, 0
+CENTERFont=鏂板畫浣�,8,N
+CENTERFont color=0, 0, 0
+DESTINATIONFont=鏂板畫浣�,8,N
+DESTINATIONFont color=0, 0, 0
+Line style=2
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 0 64
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\USRDEPD]
+OBJXSTRFont=Arial,8,N
+OBJXSTRFont color=0 0 0
+Line style=0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=2 0 128 0 64
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\Free Symbol]
+Free TextFont=Arial,8,N
+Free TextFont color=0 0 0
+Line style=2
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 64 0
+Shadow color=192 192 192
+Shadow=0</a:DisplayPreferences>
+<a:PaperSize>(8268, 11693)</a:PaperSize>
+<a:PageMargins>((315,354), (433,354))</a:PageMargins>
+<a:PageOrientation>1</a:PageOrientation>
+<a:PaperSource>15</a:PaperSource>
+<c:Symbols>
+<o:TableSymbol Id="o799">
+<a:CreationDate>1697701956</a:CreationDate>
+<a:ModificationDate>1697701956</a:ModificationDate>
+<a:IconMode>-1</a:IconMode>
+<a:Rect>((-25519,-13081), (25519,13081))</a:Rect>
+<a:AutoAdjustToText>0</a:AutoAdjustToText>
+<a:LineColor>12615680</a:LineColor>
+<a:FillColor>16570034</a:FillColor>
+<a:ShadowColor>12632256</a:ShadowColor>
+<a:FontList>STRN 0 Courier New,11,N
+DISPNAME 0 Courier New,11,N
+OWNRDISPNAME 0 Courier New,11,N
+Columns 0 Courier New,11,N
+TablePkColumns 255 Courier New,11,N
+TableFkColumns 16711680 Courier New,11,N
+Keys 0 Courier New,11,N
+Indexes 0 Courier New,11,N
+Triggers 0 Courier New,11,N
+LABL 0 Courier New,11,N</a:FontList>
+<a:BrushStyle>6</a:BrushStyle>
+<a:GradientFillMode>65</a:GradientFillMode>
+<a:GradientEndColor>16777215</a:GradientEndColor>
+<a:ManuallyResized>1</a:ManuallyResized>
+<c:Object>
+<o:Table Ref="o800"/>
+</c:Object>
+</o:TableSymbol>
+</c:Symbols>
+</o:PhysicalDiagram>
+</c:PhysicalDiagrams>
+<c:DefaultDiagram>
+<o:PhysicalDiagram Ref="o798"/>
+</c:DefaultDiagram>
+<c:Tables>
+<o:Table Id="o800">
+<a:ObjectID>8E361851-F49B-40FB-8370-BB4CD16ECF65</a:ObjectID>
+<a:Name>鏃ョ▼瀹夋帓銆恇jgl_class_agenda_manage銆�</a:Name>
+<a:Code>bjgl_class_agenda_manage</a:Code>
+<a:CreationDate>1697701956</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697708557</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鏃ョ▼瀹夋帓銆恇jgl_class_agenda_manage銆�</a:Comment>
+<a:TotalSavingCurrency/>
+<c:Columns>
+<o:Column Id="o801">
+<a:ObjectID>A074449F-7572-4028-85B5-D46121B8735C</a:ObjectID>
+<a:Name>ID</a:Name>
+<a:Code>id</a:Code>
+<a:CreationDate>1697701956</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697701956</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>ID</a:Comment>
+<a:DataType>VARCHAR(32)</a:DataType>
+<a:Length>32</a:Length>
+<a:Mandatory>1</a:Mandatory>
+</o:Column>
+<o:Column Id="o802">
+<a:ObjectID>6ED4CE51-51C5-4013-BB77-D4486CFE696F</a:ObjectID>
+<a:Name>鐝骇id</a:Name>
+<a:Code>class_info_id</a:Code>
+<a:CreationDate>1697701956</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697701956</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鐝骇id</a:Comment>
+<a:DataType>VARCHAR(32)</a:DataType>
+<a:Length>32</a:Length>
+</o:Column>
+<o:Column Id="o803">
+<a:ObjectID>14AEE9EC-44DD-40A4-AC72-052D7E6DE649</a:ObjectID>
+<a:Name>鏃ョ▼寮�濮嬫椂闂�</a:Name>
+<a:Code>start_time</a:Code>
+<a:CreationDate>1697704596</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697705722</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鏃ョ▼寮�濮嬫椂闂�</a:Comment>
+<a:DataType>INT8</a:DataType>
+<a:Length>8</a:Length>
+</o:Column>
+<o:Column Id="o804">
+<a:ObjectID>9DB1DEE0-4E98-488C-9FBD-64BF695EC596</a:ObjectID>
+<a:Name>鏃ョ▼缁撴潫鏃堕棿</a:Name>
+<a:Code>end_time</a:Code>
+<a:CreationDate>1697704596</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697705722</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鏃ョ▼缁撴潫鏃堕棿</a:Comment>
+<a:DataType>INT8</a:DataType>
+<a:Length>8</a:Length>
+</o:Column>
+<o:Column Id="o805">
+<a:ObjectID>E93DB710-8EA9-4565-8811-0C9B3866FA31</a:ObjectID>
+<a:Name>甯堣祫绠$悊銆恡r_teacher_manage銆�</a:Name>
+<a:Code>teacher_id</a:Code>
+<a:CreationDate>1697704685</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697705913</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>甯堣祫绠$悊銆恡r_teacher_manage銆�</a:Comment>
+<a:DataType>VARCHAR(32)</a:DataType>
+<a:Length>32</a:Length>
+</o:Column>
+<o:Column Id="o806">
+<a:ObjectID>C02534E7-A52B-4AA1-ABEE-4AF7004065B3</a:ObjectID>
+<a:Name>鏁欏笀鍚嶇О</a:Name>
+<a:Code>teacher_tmp_name</a:Code>
+<a:CreationDate>1697708263</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697708314</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鏁欏笀鍚嶇О</a:Comment>
+<a:DataType>VARCHAR(50)</a:DataType>
+<a:Length>50</a:Length>
+</o:Column>
+<o:Column Id="o807">
+<a:ObjectID>0ABCDC4E-CDFB-4724-9BC3-1A375B19EB39</a:ObjectID>
+<a:Name>璇剧▼绠$悊銆恡r_course_info銆�</a:Name>
+<a:Code>course_info_id</a:Code>
+<a:CreationDate>1697704685</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697706039</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>璇剧▼绠$悊銆恡r_course_info銆�</a:Comment>
+<a:DataType>VARCHAR(32)</a:DataType>
+<a:Length>32</a:Length>
+</o:Column>
+<o:Column Id="o808">
+<a:ObjectID>1A7B2769-5300-4F3F-93AA-9041EF8C379A</a:ObjectID>
+<a:Name>璇剧▼鍚�</a:Name>
+<a:Code>course_tmp_name</a:Code>
+<a:CreationDate>1697705944</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697706039</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>璇剧▼鍚�</a:Comment>
+<a:DataType>VARCHAR(200)</a:DataType>
+<a:Length>200</a:Length>
+</o:Column>
+<o:Column Id="o809">
+<a:ObjectID>DFD32112-4389-49BC-8DDA-64457973333F</a:ObjectID>
+<a:Name>鏁欏鍦哄湴绠$悊銆恉qyy_resource_class_room銆�</a:Name>
+<a:Code>class_room_id</a:Code>
+<a:CreationDate>1697707487</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697707510</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鏁欏鍦哄湴绠$悊銆恉qyy_resource_class_room銆�</a:Comment>
+<a:DataType>VARCHAR(32)</a:DataType>
+<a:Length>32</a:Length>
+</o:Column>
+<o:Column Id="o810">
+<a:ObjectID>6C95895E-454F-4A5B-A232-25C9E23192BA</a:ObjectID>
+<a:Name>鏁欏鍦哄湴鍚�</a:Name>
+<a:Code>class_room_item_name</a:Code>
+<a:CreationDate>1697708076</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697708134</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鏁欏鍦哄湴鍚�</a:Comment>
+<a:DataType>VARCHAR(100)</a:DataType>
+<a:Length>100</a:Length>
+</o:Column>
+<o:Column Id="o811">
+<a:ObjectID>931521F4-40D9-4CB6-BC15-C0D92779D334</a:ObjectID>
+<a:Name>鍒涘缓浜�</a:Name>
+<a:Code>create_user_id</a:Code>
+<a:CreationDate>1697701956</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697701956</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍒涘缓浜�</a:Comment>
+<a:DataType>INT8</a:DataType>
+<a:Length>8</a:Length>
+</o:Column>
+<o:Column Id="o812">
+<a:ObjectID>4731DA8E-4AB5-40E3-A626-BC443D4F55C0</a:ObjectID>
+<a:Name>鍒涘缓浜哄悕绉�</a:Name>
+<a:Code>create_user_name</a:Code>
+<a:CreationDate>1697701956</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697701956</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍒涘缓浜哄悕绉�</a:Comment>
+<a:DataType>VARCHAR(50)</a:DataType>
+<a:Length>50</a:Length>
+</o:Column>
+<o:Column Id="o813">
+<a:ObjectID>5C5A4555-BF87-4F5D-B93F-B8D14724DB04</a:ObjectID>
+<a:Name>鍒涘缓鏃堕棿</a:Name>
+<a:Code>create_time</a:Code>
+<a:CreationDate>1697701956</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697701956</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍒涘缓鏃堕棿</a:Comment>
+<a:DataType>INT8</a:DataType>
+<a:Length>8</a:Length>
+</o:Column>
+<o:Column Id="o814">
+<a:ObjectID>51A077CD-8B68-4C16-8D2C-3C50975FEDC5</a:ObjectID>
+<a:Name>鏇存柊浜�</a:Name>
+<a:Code>update_user_id</a:Code>
+<a:CreationDate>1697701956</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697704347</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鏇存柊浜�</a:Comment>
+<a:DataType>INT8</a:DataType>
+<a:Length>8</a:Length>
+</o:Column>
+<o:Column Id="o815">
+<a:ObjectID>19F35E57-A1D7-41E3-92F9-CDA4B981325D</a:ObjectID>
+<a:Name>鏇存柊浜哄悕绉�</a:Name>
+<a:Code>update_user_name</a:Code>
+<a:CreationDate>1697701956</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697701956</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鏇存柊浜哄悕绉�</a:Comment>
+<a:DataType>VARCHAR(50)</a:DataType>
+<a:Length>50</a:Length>
+</o:Column>
+<o:Column Id="o816">
+<a:ObjectID>B1886791-2C8F-4DF3-BE2B-D8F20A4E6E7F</a:ObjectID>
+<a:Name>鏇存柊鏃堕棿</a:Name>
+<a:Code>update_time</a:Code>
+<a:CreationDate>1697701956</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697704347</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鏇存柊鏃堕棿</a:Comment>
+<a:DataType>INT8</a:DataType>
+<a:Length>8</a:Length>
+</o:Column>
+<o:Column Id="o817">
+<a:ObjectID>A54CD53A-8953-45C8-928C-A5CFC8D06DF6</a:ObjectID>
+<a:Name>鍒犻櫎銆�1锛氭槸銆�0锛氬惁銆�</a:Name>
+<a:Code>is_deleted</a:Code>
+<a:CreationDate>1697708492</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697708557</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍒犻櫎銆�1锛氭槸銆�0锛氬惁銆�</a:Comment>
+<a:DataType>INT2</a:DataType>
+<a:Length>2</a:Length>
+</o:Column>
+</c:Columns>
+<c:Keys>
+<o:Key Id="o818">
+<a:ObjectID>66B6D699-0F21-4B22-80A7-9A23BA17D632</a:ObjectID>
+<a:Name>Key_1</a:Name>
+<a:Code>Key_1</a:Code>
+<a:CreationDate>1697701956</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697701956</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<c:Key.Columns>
+<o:Column Ref="o801"/>
+</c:Key.Columns>
+</o:Key>
+</c:Keys>
+<c:PrimaryKey>
+<o:Key Ref="o818"/>
+</c:PrimaryKey>
+</o:Table>
+</c:Tables>
+</o:Package>
+<o:Package Id="o819">
+<a:ObjectID>990CB933-D13D-4AA7-848C-AB6F77619773</a:ObjectID>
+<a:Name>鑰冨嫟绠$悊</a:Name>
+<a:Code>鑰冨嫟绠$悊</a:Code>
+<a:CreationDate>1697710097</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697712830</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<c:PhysicalDiagrams>
+<o:PhysicalDiagram Id="o820">
+<a:ObjectID>6603F0FD-DE9A-4668-96D8-0CD8293B3B49</a:ObjectID>
+<a:Name>PhysicalDiagram_1</a:Name>
+<a:Code>PhysicalDiagram_1</a:Code>
+<a:CreationDate>1697710097</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697712830</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:DisplayPreferences>[DisplayPreferences]
+
+[DisplayPreferences\PDM]
+
+[DisplayPreferences\General]
+Adjust to text=Yes
+Snap Grid=No
+Constrain Labels=Yes
+Display Grid=No
+Show Page Delimiter=Yes
+Grid size=0
+Graphic unit=2
+Window color=255, 255, 255
+Background image=
+Background mode=8
+Watermark image=
+Watermark mode=8
+Show watermark on screen=No
+Gradient mode=0
+Gradient end color=255, 255, 255
+Show Swimlane=No
+SwimlaneVert=Yes
+TreeVert=No
+CompDark=0
+
+[DisplayPreferences\Object]
+Mode=0
+Trunc Length=80
+Word Length=80
+Word Text=!&quot;&quot;#$%&amp;&#39;()*+,-./:;&lt;=&gt;?@[\]^_`{|}~
+Shortcut IntIcon=Yes
+Shortcut IntLoct=Yes
+Shortcut IntFullPath=No
+Shortcut IntLastPackage=Yes
+Shortcut ExtIcon=Yes
+Shortcut ExtLoct=No
+Shortcut ExtFullPath=No
+Shortcut ExtLastPackage=Yes
+Shortcut ExtIncludeModl=Yes
+EObjShowStrn=Yes
+ExtendedObject.Comment=No
+ExtendedObject.IconPicture=No
+ExtendedObject_SymbolLayout=
+ELnkShowStrn=Yes
+ELnkShowName=Yes
+ExtendedLink_SymbolLayout=
+FileObject.Stereotype=No
+FileObject.DisplayName=Yes
+FileObject.LocationOrName=No
+FileObject.IconPicture=No
+FileObject.IconMode=Yes
+FileObject_SymbolLayout=
+PckgShowStrn=Yes
+Package.Comment=No
+Package.IconPicture=No
+Package_SymbolLayout=
+Display Model Version=Yes
+Table.Stereotype=Yes
+Table.DisplayName=Yes
+Table.OwnerDisplayName=No
+Table.Columns=Yes
+Table.Columns._Filter=&quot;All Columns&quot; PDMCOLNALL
+Table.Columns._Columns=Stereotype DataType KeyIndicator
+Table.Columns._Limit=-5
+Table.Keys=No
+Table.Keys._Columns=Stereotype Indicator
+Table.Indexes=No
+Table.Indexes._Columns=Stereotype
+Table.Triggers=No
+Table.Triggers._Columns=Stereotype
+Table.Comment=No
+Table.IconPicture=No
+Table_SymbolLayout=&lt;Form&gt;[CRLF] &lt;StandardAttribute Name=&quot;Stereotype&quot; Attribute=&quot;Stereotype&quot; Prefix=&quot;&amp;lt;&amp;lt;&quot; Suffix=&quot;&amp;gt;&amp;gt;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;ExclusiveChoice Name=&quot;Exclusive Choice&quot; Mandatory=&quot;Yes&quot; Display=&quot;HorizontalRadios&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Name&quot; Attribute=&quot;DisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;StandardAttribute Name=&quot;Owner and Name&quot; Attribute=&quot;OwnerDisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/ExclusiveChoice&gt;[CRLF] &lt;Separator Name=&quot;Separator&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Columns&quot; Collection=&quot;Columns&quot; Columns=&quot;Stereotype No\r\nDisplayName Yes\r\nDataType No\r\nSymbolDataType No &amp;quot;Domain or Data type&amp;quot;\r\nDomain No\r\nKeyIndicator No\r\nIndexIndicator No\r\nNullStatus No&quot; Filters=&quot;&amp;quot;All Columns&amp;quot;  PDMCOLNALL &amp;quot;&amp;quot;\r\n&amp;quot;PK Columns&amp;quot;  PDMCOLNPK &amp;quot;PRIM \&amp;quot;TRUE\&amp;quot; TRUE&amp;quot;\r\n&amp;quot;Key Columns&amp;quot;  PDMCOLNKEY &amp;quot;KEYS \&amp;quot;TRUE\&amp;quot; TRUE&amp;quot;&quot; HasLimit=&quot;Yes&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Keys&quot; Collection=&quot;Keys&quot; Columns=&quot;Stereotype No\r\nDisplayName Yes\r\nIndicator No&quot; HasLimit=&quot;No&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Indexes&quot; Collection=&quot;Indexes&quot; Columns=&quot;Stereotype No\r\nDisplayName Yes\r\nIndicator No&quot; HasLimit=&quot;No&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Triggers&quot; Collection=&quot;Triggers&quot; Columns=&quot;Stereotype No\r\nDisplayName Yes&quot; HasLimit=&quot;No&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Comment&quot; Attribute=&quot;Comment&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;LEFT&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Icon&quot; Attribute=&quot;IconPicture&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;Yes&quot; /&gt;[CRLF]&lt;/Form&gt;
+View.Stereotype=Yes
+View.DisplayName=Yes
+View.OwnerDisplayName=No
+View.Columns=Yes
+View.Columns._Columns=DisplayName
+View.Columns._Limit=-5
+View.TemporaryVTables=Yes
+View.Indexes=No
+View.Comment=No
+View.IconPicture=No
+View_SymbolLayout=&lt;Form&gt;[CRLF] &lt;StandardAttribute Name=&quot;Stereotype&quot; Attribute=&quot;Stereotype&quot; Prefix=&quot;&amp;lt;&amp;lt;&quot; Suffix=&quot;&amp;gt;&amp;gt;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;ExclusiveChoice Name=&quot;Exclusive Choice&quot; Mandatory=&quot;Yes&quot; Display=&quot;HorizontalRadios&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Name&quot; Attribute=&quot;DisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;StandardAttribute Name=&quot;Owner and Name&quot; Attribute=&quot;OwnerDisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/ExclusiveChoice&gt;[CRLF] &lt;Separator Name=&quot;Separator&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Columns&quot; Collection=&quot;Columns&quot; Columns=&quot;DisplayName No\r\nExpression No\r\nDataType No\r\nSymbolDataType No &amp;quot;Domain or Data type&amp;quot;\r\nIndexIndicator No&quot; HasLimit=&quot;Yes&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Tables&quot; Collection=&quot;TemporaryVTables&quot; Columns=&quot;Name Yes&quot; HasLimit=&quot;No&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Indexes&quot; Collection=&quot;Indexes&quot; Columns=&quot;DisplayName Yes&quot; HasLimit=&quot;No&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Comment&quot; Attribute=&quot;Comment&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;LEFT&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Icon&quot; Attribute=&quot;IconPicture&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;Yes&quot; /&gt;[CRLF]&lt;/Form&gt;
+Procedure.Stereotype=No
+Procedure.DisplayName=Yes
+Procedure.OwnerDisplayName=No
+Procedure.Comment=No
+Procedure.IconPicture=No
+Procedure_SymbolLayout=&lt;Form&gt;[CRLF] &lt;StandardAttribute Name=&quot;Stereotype&quot; Attribute=&quot;Stereotype&quot; Prefix=&quot;&amp;lt;&amp;lt;&quot; Suffix=&quot;&amp;gt;&amp;gt;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;ExclusiveChoice Name=&quot;Exclusive Choice&quot; Mandatory=&quot;Yes&quot; Display=&quot;HorizontalRadios&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Name&quot; Attribute=&quot;DisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;StandardAttribute Name=&quot;Owner and Name&quot; Attribute=&quot;OwnerDisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/ExclusiveChoice&gt;[CRLF] &lt;Separator Name=&quot;Separator&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Comment&quot; Attribute=&quot;Comment&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;LEFT&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Icon&quot; Attribute=&quot;IconPicture&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;Yes&quot; /&gt;[CRLF]&lt;/Form&gt;
+Reference.Cardinality=No
+Reference.ImplementationType=No
+Reference.ChildRole=Yes
+Reference.Stereotype=Yes
+Reference.DisplayName=No
+Reference.ForeignKeyConstraintName=Yes
+Reference.JoinExpression=No
+Reference.Integrity=No
+Reference.ParentRole=Yes
+Reference_SymbolLayout=&lt;Form&gt;[CRLF] &lt;Form Name=&quot;Source&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Cardinality&quot; Attribute=&quot;Cardinality&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;StandardAttribute Name=&quot;Implementation&quot; Attribute=&quot;ImplementationType&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;StandardAttribute Name=&quot;Child Role&quot; Attribute=&quot;ChildRole&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/Form&gt;[CRLF] &lt;Form Name=&quot;Center&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Stereotype&quot; Attribute=&quot;Stereotype&quot; Prefix=&quot;&amp;lt;&amp;lt;&quot; Suffix=&quot;&amp;gt;&amp;gt;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;ExclusiveChoice Name=&quot;Exclusive Choice&quot; Mandatory=&quot;No&quot; Display=&quot;HorizontalRadios&quot; &gt;[CRLF]   &lt;StandardAttribute Name=&quot;Name&quot; Attribute=&quot;DisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]   &lt;StandardAttribute Name=&quot;Cons&amp;amp;traint Name&quot; Attribute=&quot;ForeignKeyConstraintName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;Cons&amp;amp;traint Name&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]   &lt;StandardAttribute Name=&quot;Join&quot; Attribute=&quot;JoinExpression&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;Join&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;/ExclusiveChoice&gt;[CRLF]  &lt;StandardAttribute Name=&quot;Referential integrity&quot; Attribute=&quot;Integrity&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;Referential integrity&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/Form&gt;[CRLF] &lt;Form Name=&quot;Destination&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Parent Role&quot; Attribute=&quot;ParentRole&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/Form&gt;[CRLF]&lt;/Form&gt;
+ViewReference.ChildRole=Yes
+ViewReference.Stereotype=Yes
+ViewReference.DisplayName=No
+ViewReference.JoinExpression=No
+ViewReference.ParentRole=Yes
+ViewReference_SymbolLayout=&lt;Form&gt;[CRLF] &lt;Form Name=&quot;Source&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Child Role&quot; Attribute=&quot;ChildRole&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/Form&gt;[CRLF] &lt;Form Name=&quot;Center&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Stereotype&quot; Attribute=&quot;Stereotype&quot; Prefix=&quot;&amp;lt;&amp;lt;&quot; Suffix=&quot;&amp;gt;&amp;gt;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;ExclusiveChoice Name=&quot;Exclusive Choice&quot; Mandatory=&quot;No&quot; Display=&quot;HorizontalRadios&quot; &gt;[CRLF]   &lt;StandardAttribute Name=&quot;Name&quot; Attribute=&quot;DisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]   &lt;StandardAttribute Name=&quot;Join Expression&quot; Attribute=&quot;JoinExpression&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;/ExclusiveChoice&gt;[CRLF] &lt;/Form&gt;[CRLF] &lt;Form Name=&quot;Destination&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Parent Role&quot; Attribute=&quot;ParentRole&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/Form&gt;[CRLF]&lt;/Form&gt;
+
+[DisplayPreferences\Symbol]
+
+[DisplayPreferences\Symbol\FRMEOBJ]
+STRNFont=Arial,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial,8,N
+DISPNAMEFont color=0, 0, 0
+LABLFont=Arial,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=6000
+Height=2000
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=64
+Brush gradient color=192 192 192
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 255 128 128
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\FRMELNK]
+CENTERFont=Arial,8,N
+CENTERFont color=0, 0, 0
+Line style=2
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 128 255
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\FILO]
+OBJSTRNFont=鏂板畫浣�,8,N
+OBJSTRNFont color=0, 0, 0
+DISPNAMEFont=鏂板畫浣�,8,N
+DISPNAMEFont color=0, 0, 0
+LCNMFont=鏂板畫浣�,8,N
+LCNMFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=Yes
+Keep center=Yes
+Keep size=No
+Width=2400
+Height=2400
+Brush color=255 255 255
+Fill Color=No
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 0 255
+Shadow color=192 192 192
+Shadow=-1
+
+[DisplayPreferences\Symbol\PDMPCKG]
+STRNFont=Arial,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial,8,N
+DISPNAMEFont color=0, 0, 0
+LABLFont=Arial,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4800
+Height=3600
+Brush color=255 255 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 178 178 178
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\TABL]
+STRNFont=鏂板畫浣�,20,N
+STRNFont color=0 0 0
+DISPNAMEFont=鏂板畫浣�,8,N
+DISPNAMEFont color=0 0 0
+OWNRDISPNAMEFont=鏂板畫浣�,8,N
+OWNRDISPNAMEFont color=0 0 0
+ColumnsFont=鏂板畫浣�,8,N
+ColumnsFont color=0 0 0
+TablePkColumnsFont=鏂板畫浣�,8,U
+TablePkColumnsFont color=0 0 0
+TableFkColumnsFont=鏂板畫浣�,8,N
+TableFkColumnsFont color=0 0 0
+KeysFont=鏂板畫浣�,8,N
+KeysFont color=0 0 0
+IndexesFont=鏂板畫浣�,8,N
+IndexesFont color=0 0 0
+TriggersFont=鏂板畫浣�,8,N
+TriggersFont color=0 0 0
+LABLFont=鏂板畫浣�,8,N
+LABLFont color=0 0 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=15000
+Height=7500
+Brush color=178 214 252
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\VIEW]
+STRNFont=Arial,8,N
+STRNFont color=0 0 0
+DISPNAMEFont=Arial,8,N
+DISPNAMEFont color=0 0 0
+OWNRDISPNAMEFont=鏂板畫浣�,8,N
+OWNRDISPNAMEFont color=0, 0, 0
+ColumnsFont=Arial,8,N
+ColumnsFont color=0 0 0
+TablePkColumnsFont=鏂板畫浣�,8,U
+TablePkColumnsFont color=0, 0, 0
+TableFkColumnsFont=鏂板畫浣�,8,N
+TableFkColumnsFont color=0, 0, 0
+TemporaryVTablesFont=Arial,8,N
+TemporaryVTablesFont color=0 0 0
+IndexesFont=Arial,8,N
+IndexesFont color=0 0 0
+LABLFont=Arial,8,N
+LABLFont color=0 0 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4800
+Height=4000
+Brush color=233 202 131
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 128 128
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\PROC]
+STRNFont=Arial,8,N
+STRNFont color=0 0 0
+DISPNAMEFont=Arial,8,N
+DISPNAMEFont color=0 0 0
+OWNRDISPNAMEFont=鏂板畫浣�,8,N
+OWNRDISPNAMEFont color=0, 0, 0
+LABLFont=Arial,8,N
+LABLFont color=0 0 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4000
+Height=1000
+Brush color=255 255 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 108 0
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\REFR]
+SOURCEFont=鏂板畫浣�,8,N
+SOURCEFont color=0, 0, 0
+CENTERFont=鏂板畫浣�,8,N
+CENTERFont color=0, 0, 0
+DESTINATIONFont=鏂板畫浣�,8,N
+DESTINATIONFont color=0, 0, 0
+Line style=2
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 0 64
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\VREF]
+SOURCEFont=鏂板畫浣�,8,N
+SOURCEFont color=0, 0, 0
+CENTERFont=鏂板畫浣�,8,N
+CENTERFont color=0, 0, 0
+DESTINATIONFont=鏂板畫浣�,8,N
+DESTINATIONFont color=0, 0, 0
+Line style=2
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 0 64
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\USRDEPD]
+OBJXSTRFont=Arial,8,N
+OBJXSTRFont color=0 0 0
+Line style=0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=2 0 128 0 64
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\Free Symbol]
+Free TextFont=Arial,8,N
+Free TextFont color=0 0 0
+Line style=2
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 64 0
+Shadow color=192 192 192
+Shadow=0</a:DisplayPreferences>
+<a:PaperSize>(8268, 11693)</a:PaperSize>
+<a:PageMargins>((315,354), (433,354))</a:PageMargins>
+<a:PageOrientation>1</a:PageOrientation>
+<a:PaperSource>15</a:PaperSource>
+<c:Symbols>
+<o:TableSymbol Id="o821">
+<a:CreationDate>1697710560</a:CreationDate>
+<a:ModificationDate>1697712814</a:ModificationDate>
+<a:IconMode>-1</a:IconMode>
+<a:Rect>((-25519,-15263), (25519,13081))</a:Rect>
+<a:AutoAdjustToText>0</a:AutoAdjustToText>
+<a:LineColor>12615680</a:LineColor>
+<a:FillColor>16570034</a:FillColor>
+<a:ShadowColor>12632256</a:ShadowColor>
+<a:FontList>STRN 0 Courier New,11,N
+DISPNAME 0 Courier New,11,N
+OWNRDISPNAME 0 Courier New,11,N
+Columns 0 Courier New,11,N
+TablePkColumns 255 Courier New,11,N
+TableFkColumns 16711680 Courier New,11,N
+Keys 0 Courier New,11,N
+Indexes 0 Courier New,11,N
+Triggers 0 Courier New,11,N
+LABL 0 Courier New,11,N</a:FontList>
+<a:BrushStyle>6</a:BrushStyle>
+<a:GradientFillMode>65</a:GradientFillMode>
+<a:GradientEndColor>16777215</a:GradientEndColor>
+<a:ManuallyResized>1</a:ManuallyResized>
+<c:Object>
+<o:Table Ref="o822"/>
+</c:Object>
+</o:TableSymbol>
+<o:TableSymbol Id="o823">
+<a:CreationDate>1697712830</a:CreationDate>
+<a:ModificationDate>1697714359</a:ModificationDate>
+<a:IconMode>-1</a:IconMode>
+<a:Rect>((-25544,-30226), (25494,-17702))</a:Rect>
+<a:AutoAdjustToText>0</a:AutoAdjustToText>
+<a:LineColor>12615680</a:LineColor>
+<a:FillColor>16570034</a:FillColor>
+<a:ShadowColor>12632256</a:ShadowColor>
+<a:FontList>STRN 0 Courier New,11,N
+DISPNAME 0 Courier New,11,N
+OWNRDISPNAME 0 Courier New,11,N
+Columns 0 Courier New,11,N
+TablePkColumns 255 Courier New,11,N
+TableFkColumns 16711680 Courier New,11,N
+Keys 0 Courier New,11,N
+Indexes 0 Courier New,11,N
+Triggers 0 Courier New,11,N
+LABL 0 Courier New,11,N</a:FontList>
+<a:BrushStyle>6</a:BrushStyle>
+<a:GradientFillMode>65</a:GradientFillMode>
+<a:GradientEndColor>16777215</a:GradientEndColor>
+<a:ManuallyResized>1</a:ManuallyResized>
+<c:Object>
+<o:Table Ref="o824"/>
+</c:Object>
+</o:TableSymbol>
+</c:Symbols>
+</o:PhysicalDiagram>
+</c:PhysicalDiagrams>
+<c:DefaultDiagram>
+<o:PhysicalDiagram Ref="o820"/>
+</c:DefaultDiagram>
+<c:Tables>
+<o:Table Id="o822">
+<a:ObjectID>60568DFE-B3BC-40E9-96B2-1BEC3713161C</a:ObjectID>
+<a:Name>鑰冨嫟璁剧疆銆恇jgl_class_attendance_manage銆�</a:Name>
+<a:Code>bjgl_class_attendance_manage</a:Code>
+<a:CreationDate>1697710560</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697712808</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鑰冨嫟璁剧疆銆恇jgl_class_attendance_manage銆�</a:Comment>
+<a:TotalSavingCurrency/>
+<c:Columns>
+<o:Column Id="o825">
+<a:ObjectID>EA3E90C7-45A6-4C71-AE44-AEAB621DEDF4</a:ObjectID>
+<a:Name>ID</a:Name>
+<a:Code>id</a:Code>
+<a:CreationDate>1697710560</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697710560</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>ID</a:Comment>
+<a:DataType>VARCHAR(32)</a:DataType>
+<a:Length>32</a:Length>
+<a:Mandatory>1</a:Mandatory>
+</o:Column>
+<o:Column Id="o826">
+<a:ObjectID>0858E597-6DCD-4121-A6DE-9DACF29623E1</a:ObjectID>
+<a:Name>鐝骇id</a:Name>
+<a:Code>class_info_id</a:Code>
+<a:CreationDate>1697712574</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697712593</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鐝骇id</a:Comment>
+<a:DataType>VARCHAR(32)</a:DataType>
+<a:Length>32</a:Length>
+</o:Column>
+<o:Column Id="o827">
+<a:ObjectID>B6544854-8B7A-479E-BBF3-E6E7723869E1</a:ObjectID>
+<a:Name>鑰冨嫟鍚嶇О</a:Name>
+<a:Code>attendance_name</a:Code>
+<a:CreationDate>1697712053</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697712099</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鑰冨嫟鍚嶇О</a:Comment>
+<a:DataType>VARCHAR(200)</a:DataType>
+<a:Length>200</a:Length>
+</o:Column>
+<o:Column Id="o828">
+<a:ObjectID>A45FF7C2-D767-4FFB-8863-62BAA3F84E7D</a:ObjectID>
+<a:Name>寮�濮嬫椂闂�</a:Name>
+<a:Code>start_time</a:Code>
+<a:CreationDate>1697712099</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697712131</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>寮�濮嬫椂闂�</a:Comment>
+<a:DataType>INT8</a:DataType>
+<a:Length>8</a:Length>
+</o:Column>
+<o:Column Id="o829">
+<a:ObjectID>F18E7800-D84A-4523-A2BB-25F559909620</a:ObjectID>
+<a:Name>缁撴潫鏃堕棿</a:Name>
+<a:Code>end_time</a:Code>
+<a:CreationDate>1697712099</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697712312</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>缁撴潫鏃堕棿</a:Comment>
+<a:DataType>INT8</a:DataType>
+<a:Length>8</a:Length>
+</o:Column>
+<o:Column Id="o830">
+<a:ObjectID>1F7F1CBA-409D-47A7-AC64-7D4E3DBD51C5</a:ObjectID>
+<a:Name>鍦板潃</a:Name>
+<a:Code>address</a:Code>
+<a:CreationDate>1697712131</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697712359</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍦板潃</a:Comment>
+<a:DataType>VARCHAR(300)</a:DataType>
+<a:Length>300</a:Length>
+</o:Column>
+<o:Column Id="o831">
+<a:ObjectID>AF92B645-A9CE-4202-934C-F30F3F2CC162</a:ObjectID>
+<a:Name>鍧愭爣</a:Name>
+<a:Code>latlng</a:Code>
+<a:CreationDate>1697712131</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697712359</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍧愭爣</a:Comment>
+<a:DataType>VARCHAR(32)</a:DataType>
+<a:Length>32</a:Length>
+</o:Column>
+<o:Column Id="o832">
+<a:ObjectID>B029A47B-B0FB-4C08-A4F8-4E0EF04B9E33</a:ObjectID>
+<a:Name>鏈夋晥鑼冨洿</a:Name>
+<a:Code>valid_range</a:Code>
+<a:CreationDate>1697712359</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697712439</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鏈夋晥鑼冨洿</a:Comment>
+<a:DataType>INT4</a:DataType>
+<a:Length>4</a:Length>
+</o:Column>
+<o:Column Id="o833">
+<a:ObjectID>D4AAFF50-3389-4A86-85FB-57D277303E9A</a:ObjectID>
+<a:Name>鍒涘缓浜�</a:Name>
+<a:Code>create_user_id</a:Code>
+<a:CreationDate>1697710560</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697710560</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍒涘缓浜�</a:Comment>
+<a:DataType>INT8</a:DataType>
+<a:Length>8</a:Length>
+</o:Column>
+<o:Column Id="o834">
+<a:ObjectID>E854A1ED-3226-41E6-82DF-B8C024A1F9B5</a:ObjectID>
+<a:Name>鍒涘缓浜哄悕绉�</a:Name>
+<a:Code>create_user_name</a:Code>
+<a:CreationDate>1697710560</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697710560</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍒涘缓浜哄悕绉�</a:Comment>
+<a:DataType>VARCHAR(50)</a:DataType>
+<a:Length>50</a:Length>
+</o:Column>
+<o:Column Id="o835">
+<a:ObjectID>20FEA2EF-C4B8-406C-82C0-9115DFD14760</a:ObjectID>
+<a:Name>鍒涘缓鏃堕棿</a:Name>
+<a:Code>create_time</a:Code>
+<a:CreationDate>1697710560</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697710560</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍒涘缓鏃堕棿</a:Comment>
+<a:DataType>INT8</a:DataType>
+<a:Length>8</a:Length>
+</o:Column>
+<o:Column Id="o836">
+<a:ObjectID>74A8ADC4-4149-4479-B707-77A72CFED2C3</a:ObjectID>
+<a:Name>鏇存柊浜�</a:Name>
+<a:Code>update_user_id</a:Code>
+<a:CreationDate>1697710560</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697710560</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鏇存柊浜�</a:Comment>
+<a:DataType>INT8</a:DataType>
+<a:Length>8</a:Length>
+</o:Column>
+<o:Column Id="o837">
+<a:ObjectID>4F13B0D3-7B48-407C-811F-6EDEAD40DCB7</a:ObjectID>
+<a:Name>鏇存柊浜哄悕绉�</a:Name>
+<a:Code>update_user_name</a:Code>
+<a:CreationDate>1697710560</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697710560</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鏇存柊浜哄悕绉�</a:Comment>
+<a:DataType>VARCHAR(50)</a:DataType>
+<a:Length>50</a:Length>
+</o:Column>
+<o:Column Id="o838">
+<a:ObjectID>2933214C-E5F2-4316-B45D-DE7D138D7884</a:ObjectID>
+<a:Name>鏇存柊鏃堕棿</a:Name>
+<a:Code>update_time</a:Code>
+<a:CreationDate>1697710560</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697710560</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鏇存柊鏃堕棿</a:Comment>
+<a:DataType>INT8</a:DataType>
+<a:Length>8</a:Length>
+</o:Column>
+<o:Column Id="o839">
+<a:ObjectID>17036941-4A7D-49FE-914B-5EC1A0AA04F8</a:ObjectID>
+<a:Name>鍒犻櫎銆�1锛氭槸銆�0锛氬惁銆�</a:Name>
+<a:Code>is_deleted</a:Code>
+<a:CreationDate>1697710560</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697710560</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍒犻櫎銆�1锛氭槸銆�0锛氬惁銆�</a:Comment>
+<a:DataType>INT2</a:DataType>
+<a:Length>2</a:Length>
+</o:Column>
+<o:Column Id="o840">
+<a:ObjectID>CCF9E1BD-2AE1-4E96-9C5C-744DDFDE2697</a:ObjectID>
+<a:Name>鍑哄嫟</a:Name>
+<a:Code>attendance_num</a:Code>
+<a:CreationDate>1697712624</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697712772</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍑哄嫟</a:Comment>
+<a:DataType>INT2</a:DataType>
+<a:Length>2</a:Length>
+</o:Column>
+<o:Column Id="o841">
+<a:ObjectID>49FED108-50C0-4037-B9E1-13AB05DED49C</a:ObjectID>
+<a:Name>缂哄嫟</a:Name>
+<a:Code>not_attendance_num</a:Code>
+<a:CreationDate>1697712624</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697712772</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>缂哄嫟</a:Comment>
+<a:DataType>INT2</a:DataType>
+<a:Length>2</a:Length>
+</o:Column>
+<o:Column Id="o842">
+<a:ObjectID>068A3DBC-5133-4E15-8F76-19C86E735ED7</a:ObjectID>
+<a:Name>浠e嚭鍕�</a:Name>
+<a:Code>replace_attendance_num</a:Code>
+<a:CreationDate>1697712624</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697712772</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>浠e嚭鍕�</a:Comment>
+<a:DataType>INT2</a:DataType>
+<a:Length>2</a:Length>
+</o:Column>
+<o:Column Id="o843">
+<a:ObjectID>26AB96C2-96FD-4651-8052-273358EB82EF</a:ObjectID>
+<a:Name>鎬讳汉鏁�</a:Name>
+<a:Code>total_user_num</a:Code>
+<a:CreationDate>1697712772</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697712808</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鎬讳汉鏁�</a:Comment>
+<a:DataType>INT2</a:DataType>
+<a:Length>2</a:Length>
+</o:Column>
+</c:Columns>
+<c:Keys>
+<o:Key Id="o844">
+<a:ObjectID>E65E434B-E25F-49F1-8B64-990EDEC72221</a:ObjectID>
+<a:Name>Key_1</a:Name>
+<a:Code>Key_1</a:Code>
+<a:CreationDate>1697710560</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697710560</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<c:Key.Columns>
+<o:Column Ref="o825"/>
+</c:Key.Columns>
+</o:Key>
+</c:Keys>
+<c:PrimaryKey>
+<o:Key Ref="o844"/>
+</c:PrimaryKey>
+</o:Table>
+<o:Table Id="o824">
+<a:ObjectID>98D2860A-CAB5-4B37-9ADB-C0788707093F</a:ObjectID>
+<a:Name>鑰冨嫟浜哄憳淇℃伅銆恇jgl_class_attendance_user銆�</a:Name>
+<a:Code>bjgl_class_attendance_user</a:Code>
+<a:CreationDate>1697712830</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697714177</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鑰冨嫟浜哄憳淇℃伅銆恇jgl_class_attendance_user銆�</a:Comment>
+<a:TotalSavingCurrency/>
+<c:Columns>
+<o:Column Id="o845">
+<a:ObjectID>FB194ED1-BF00-4B5E-9D8E-5FE0C0DACEEB</a:ObjectID>
+<a:Name>ID</a:Name>
+<a:Code>id</a:Code>
+<a:CreationDate>1697712830</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697712830</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>ID</a:Comment>
+<a:DataType>VARCHAR(32)</a:DataType>
+<a:Length>32</a:Length>
+<a:Mandatory>1</a:Mandatory>
+</o:Column>
+<o:Column Id="o846">
+<a:ObjectID>11C20DA6-03B1-459A-8D78-1E055DC75F30</a:ObjectID>
+<a:Name>鐝骇id</a:Name>
+<a:Code>class_info_id</a:Code>
+<a:CreationDate>1697712830</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697712830</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鐝骇id</a:Comment>
+<a:DataType>VARCHAR(32)</a:DataType>
+<a:Length>32</a:Length>
+</o:Column>
+<o:Column Id="o847">
+<a:ObjectID>7E62CE13-7632-472E-A8CD-F0A8B9539C67</a:ObjectID>
+<a:Name>瀛﹀憳id</a:Name>
+<a:Code>student_id</a:Code>
+<a:CreationDate>1697713922</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697714189</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>瀛﹀憳id</a:Comment>
+<a:DataType>VARCHAR(32)</a:DataType>
+<a:Length>32</a:Length>
+</o:Column>
+<o:Column Id="o848">
+<a:ObjectID>00033D61-38B6-4B5F-B492-F1A925BFFCD1</a:ObjectID>
+<a:Name>鍒涘缓浜�</a:Name>
+<a:Code>create_user_id</a:Code>
+<a:CreationDate>1697712830</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697712830</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍒涘缓浜�</a:Comment>
+<a:DataType>INT8</a:DataType>
+<a:Length>8</a:Length>
+</o:Column>
+<o:Column Id="o849">
+<a:ObjectID>4AE96B08-3D82-4293-B8DE-A2C8A0A9D26B</a:ObjectID>
+<a:Name>鍒涘缓浜哄悕绉�</a:Name>
+<a:Code>create_user_name</a:Code>
+<a:CreationDate>1697712830</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697712830</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍒涘缓浜哄悕绉�</a:Comment>
+<a:DataType>VARCHAR(50)</a:DataType>
+<a:Length>50</a:Length>
+</o:Column>
+<o:Column Id="o850">
+<a:ObjectID>186A1AE8-3391-4FA0-884B-6D09EAFA895D</a:ObjectID>
+<a:Name>鍒涘缓鏃堕棿</a:Name>
+<a:Code>create_time</a:Code>
+<a:CreationDate>1697712830</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697712830</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍒涘缓鏃堕棿</a:Comment>
+<a:DataType>INT8</a:DataType>
+<a:Length>8</a:Length>
+</o:Column>
+<o:Column Id="o851">
+<a:ObjectID>3806315A-BA0C-4B9B-A2CD-C172551CBCFA</a:ObjectID>
+<a:Name>鑰冨嫟銆�1锛氭甯稿嚭鍕ゃ��2锛氳ˉ鍗°��</a:Name>
+<a:Code>attendance</a:Code>
+<a:CreationDate>1697714118</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697714189</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鑰冨嫟銆�1锛氭甯稿嚭鍕ゃ��2锛氳ˉ鍗°��</a:Comment>
+<a:DataType>INT2</a:DataType>
+<a:Length>2</a:Length>
+</o:Column>
+</c:Columns>
+<c:Keys>
+<o:Key Id="o852">
+<a:ObjectID>8CC7C397-C141-4A20-AE7A-15191CBCD0C6</a:ObjectID>
+<a:Name>Key_1</a:Name>
+<a:Code>Key_1</a:Code>
+<a:CreationDate>1697712830</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697712830</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<c:Key.Columns>
+<o:Column Ref="o845"/>
+</c:Key.Columns>
+</o:Key>
+</c:Keys>
+<c:PrimaryKey>
+<o:Key Ref="o852"/>
+</c:PrimaryKey>
+</o:Table>
+</c:Tables>
+</o:Package>
+<o:Package Id="o853">
+<a:ObjectID>3B70F41B-F0BF-4CBF-B1DC-EF879588FA21</a:ObjectID>
+<a:Name>浣滀笟銆佽�冭瘯銆佸悎鏍笺�佽鍋囥�佸惉璇�</a:Name>
+<a:Code>浣滀笟銆佽�冭瘯銆佸悎鏍笺�佽鍋囥�佸惉璇�</a:Code>
+<a:CreationDate>1697714667</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697714781</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<c:PhysicalDiagrams>
+<o:PhysicalDiagram Id="o854">
+<a:ObjectID>BF863FA8-FFB4-4198-8E6D-1873EA784361</a:ObjectID>
+<a:Name>PhysicalDiagram_1</a:Name>
+<a:Code>PhysicalDiagram_1</a:Code>
+<a:CreationDate>1697714667</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697714781</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:DisplayPreferences>[DisplayPreferences]
+
+[DisplayPreferences\PDM]
+
+[DisplayPreferences\General]
+Adjust to text=Yes
+Snap Grid=No
+Constrain Labels=Yes
+Display Grid=No
+Show Page Delimiter=Yes
+Grid size=0
+Graphic unit=2
+Window color=255, 255, 255
+Background image=
+Background mode=8
+Watermark image=
+Watermark mode=8
+Show watermark on screen=No
+Gradient mode=0
+Gradient end color=255, 255, 255
+Show Swimlane=No
+SwimlaneVert=Yes
+TreeVert=No
+CompDark=0
+
+[DisplayPreferences\Object]
+Mode=0
+Trunc Length=80
+Word Length=80
+Word Text=!&quot;&quot;#$%&amp;&#39;()*+,-./:;&lt;=&gt;?@[\]^_`{|}~
+Shortcut IntIcon=Yes
+Shortcut IntLoct=Yes
+Shortcut IntFullPath=No
+Shortcut IntLastPackage=Yes
+Shortcut ExtIcon=Yes
+Shortcut ExtLoct=No
+Shortcut ExtFullPath=No
+Shortcut ExtLastPackage=Yes
+Shortcut ExtIncludeModl=Yes
+EObjShowStrn=Yes
+ExtendedObject.Comment=No
+ExtendedObject.IconPicture=No
+ExtendedObject_SymbolLayout=
+ELnkShowStrn=Yes
+ELnkShowName=Yes
+ExtendedLink_SymbolLayout=
+FileObject.Stereotype=No
+FileObject.DisplayName=Yes
+FileObject.LocationOrName=No
+FileObject.IconPicture=No
+FileObject.IconMode=Yes
+FileObject_SymbolLayout=
+PckgShowStrn=Yes
+Package.Comment=No
+Package.IconPicture=No
+Package_SymbolLayout=
+Display Model Version=Yes
+Table.Stereotype=Yes
+Table.DisplayName=Yes
+Table.OwnerDisplayName=No
+Table.Columns=Yes
+Table.Columns._Filter=&quot;All Columns&quot; PDMCOLNALL
+Table.Columns._Columns=Stereotype DataType KeyIndicator
+Table.Columns._Limit=-5
+Table.Keys=No
+Table.Keys._Columns=Stereotype Indicator
+Table.Indexes=No
+Table.Indexes._Columns=Stereotype
+Table.Triggers=No
+Table.Triggers._Columns=Stereotype
+Table.Comment=No
+Table.IconPicture=No
+Table_SymbolLayout=&lt;Form&gt;[CRLF] &lt;StandardAttribute Name=&quot;Stereotype&quot; Attribute=&quot;Stereotype&quot; Prefix=&quot;&amp;lt;&amp;lt;&quot; Suffix=&quot;&amp;gt;&amp;gt;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;ExclusiveChoice Name=&quot;Exclusive Choice&quot; Mandatory=&quot;Yes&quot; Display=&quot;HorizontalRadios&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Name&quot; Attribute=&quot;DisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;StandardAttribute Name=&quot;Owner and Name&quot; Attribute=&quot;OwnerDisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/ExclusiveChoice&gt;[CRLF] &lt;Separator Name=&quot;Separator&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Columns&quot; Collection=&quot;Columns&quot; Columns=&quot;Stereotype No\r\nDisplayName Yes\r\nDataType No\r\nSymbolDataType No &amp;quot;Domain or Data type&amp;quot;\r\nDomain No\r\nKeyIndicator No\r\nIndexIndicator No\r\nNullStatus No&quot; Filters=&quot;&amp;quot;All Columns&amp;quot;  PDMCOLNALL &amp;quot;&amp;quot;\r\n&amp;quot;PK Columns&amp;quot;  PDMCOLNPK &amp;quot;PRIM \&amp;quot;TRUE\&amp;quot; TRUE&amp;quot;\r\n&amp;quot;Key Columns&amp;quot;  PDMCOLNKEY &amp;quot;KEYS \&amp;quot;TRUE\&amp;quot; TRUE&amp;quot;&quot; HasLimit=&quot;Yes&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Keys&quot; Collection=&quot;Keys&quot; Columns=&quot;Stereotype No\r\nDisplayName Yes\r\nIndicator No&quot; HasLimit=&quot;No&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Indexes&quot; Collection=&quot;Indexes&quot; Columns=&quot;Stereotype No\r\nDisplayName Yes\r\nIndicator No&quot; HasLimit=&quot;No&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Triggers&quot; Collection=&quot;Triggers&quot; Columns=&quot;Stereotype No\r\nDisplayName Yes&quot; HasLimit=&quot;No&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Comment&quot; Attribute=&quot;Comment&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;LEFT&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Icon&quot; Attribute=&quot;IconPicture&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;Yes&quot; /&gt;[CRLF]&lt;/Form&gt;
+View.Stereotype=Yes
+View.DisplayName=Yes
+View.OwnerDisplayName=No
+View.Columns=Yes
+View.Columns._Columns=DisplayName
+View.Columns._Limit=-5
+View.TemporaryVTables=Yes
+View.Indexes=No
+View.Comment=No
+View.IconPicture=No
+View_SymbolLayout=&lt;Form&gt;[CRLF] &lt;StandardAttribute Name=&quot;Stereotype&quot; Attribute=&quot;Stereotype&quot; Prefix=&quot;&amp;lt;&amp;lt;&quot; Suffix=&quot;&amp;gt;&amp;gt;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;ExclusiveChoice Name=&quot;Exclusive Choice&quot; Mandatory=&quot;Yes&quot; Display=&quot;HorizontalRadios&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Name&quot; Attribute=&quot;DisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;StandardAttribute Name=&quot;Owner and Name&quot; Attribute=&quot;OwnerDisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/ExclusiveChoice&gt;[CRLF] &lt;Separator Name=&quot;Separator&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Columns&quot; Collection=&quot;Columns&quot; Columns=&quot;DisplayName No\r\nExpression No\r\nDataType No\r\nSymbolDataType No &amp;quot;Domain or Data type&amp;quot;\r\nIndexIndicator No&quot; HasLimit=&quot;Yes&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Tables&quot; Collection=&quot;TemporaryVTables&quot; Columns=&quot;Name Yes&quot; HasLimit=&quot;No&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Indexes&quot; Collection=&quot;Indexes&quot; Columns=&quot;DisplayName Yes&quot; HasLimit=&quot;No&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Comment&quot; Attribute=&quot;Comment&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;LEFT&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Icon&quot; Attribute=&quot;IconPicture&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;Yes&quot; /&gt;[CRLF]&lt;/Form&gt;
+Procedure.Stereotype=No
+Procedure.DisplayName=Yes
+Procedure.OwnerDisplayName=No
+Procedure.Comment=No
+Procedure.IconPicture=No
+Procedure_SymbolLayout=&lt;Form&gt;[CRLF] &lt;StandardAttribute Name=&quot;Stereotype&quot; Attribute=&quot;Stereotype&quot; Prefix=&quot;&amp;lt;&amp;lt;&quot; Suffix=&quot;&amp;gt;&amp;gt;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;ExclusiveChoice Name=&quot;Exclusive Choice&quot; Mandatory=&quot;Yes&quot; Display=&quot;HorizontalRadios&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Name&quot; Attribute=&quot;DisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;StandardAttribute Name=&quot;Owner and Name&quot; Attribute=&quot;OwnerDisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/ExclusiveChoice&gt;[CRLF] &lt;Separator Name=&quot;Separator&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Comment&quot; Attribute=&quot;Comment&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;LEFT&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Icon&quot; Attribute=&quot;IconPicture&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;Yes&quot; /&gt;[CRLF]&lt;/Form&gt;
+Reference.Cardinality=No
+Reference.ImplementationType=No
+Reference.ChildRole=Yes
+Reference.Stereotype=Yes
+Reference.DisplayName=No
+Reference.ForeignKeyConstraintName=Yes
+Reference.JoinExpression=No
+Reference.Integrity=No
+Reference.ParentRole=Yes
+Reference_SymbolLayout=&lt;Form&gt;[CRLF] &lt;Form Name=&quot;Source&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Cardinality&quot; Attribute=&quot;Cardinality&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;StandardAttribute Name=&quot;Implementation&quot; Attribute=&quot;ImplementationType&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;StandardAttribute Name=&quot;Child Role&quot; Attribute=&quot;ChildRole&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/Form&gt;[CRLF] &lt;Form Name=&quot;Center&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Stereotype&quot; Attribute=&quot;Stereotype&quot; Prefix=&quot;&amp;lt;&amp;lt;&quot; Suffix=&quot;&amp;gt;&amp;gt;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;ExclusiveChoice Name=&quot;Exclusive Choice&quot; Mandatory=&quot;No&quot; Display=&quot;HorizontalRadios&quot; &gt;[CRLF]   &lt;StandardAttribute Name=&quot;Name&quot; Attribute=&quot;DisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]   &lt;StandardAttribute Name=&quot;Cons&amp;amp;traint Name&quot; Attribute=&quot;ForeignKeyConstraintName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;Cons&amp;amp;traint Name&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]   &lt;StandardAttribute Name=&quot;Join&quot; Attribute=&quot;JoinExpression&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;Join&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;/ExclusiveChoice&gt;[CRLF]  &lt;StandardAttribute Name=&quot;Referential integrity&quot; Attribute=&quot;Integrity&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;Referential integrity&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/Form&gt;[CRLF] &lt;Form Name=&quot;Destination&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Parent Role&quot; Attribute=&quot;ParentRole&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/Form&gt;[CRLF]&lt;/Form&gt;
+ViewReference.ChildRole=Yes
+ViewReference.Stereotype=Yes
+ViewReference.DisplayName=No
+ViewReference.JoinExpression=No
+ViewReference.ParentRole=Yes
+ViewReference_SymbolLayout=&lt;Form&gt;[CRLF] &lt;Form Name=&quot;Source&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Child Role&quot; Attribute=&quot;ChildRole&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/Form&gt;[CRLF] &lt;Form Name=&quot;Center&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Stereotype&quot; Attribute=&quot;Stereotype&quot; Prefix=&quot;&amp;lt;&amp;lt;&quot; Suffix=&quot;&amp;gt;&amp;gt;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;ExclusiveChoice Name=&quot;Exclusive Choice&quot; Mandatory=&quot;No&quot; Display=&quot;HorizontalRadios&quot; &gt;[CRLF]   &lt;StandardAttribute Name=&quot;Name&quot; Attribute=&quot;DisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]   &lt;StandardAttribute Name=&quot;Join Expression&quot; Attribute=&quot;JoinExpression&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;/ExclusiveChoice&gt;[CRLF] &lt;/Form&gt;[CRLF] &lt;Form Name=&quot;Destination&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Parent Role&quot; Attribute=&quot;ParentRole&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/Form&gt;[CRLF]&lt;/Form&gt;
+
+[DisplayPreferences\Symbol]
+
+[DisplayPreferences\Symbol\FRMEOBJ]
+STRNFont=Arial,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial,8,N
+DISPNAMEFont color=0, 0, 0
+LABLFont=Arial,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=6000
+Height=2000
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=64
+Brush gradient color=192 192 192
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 255 128 128
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\FRMELNK]
+CENTERFont=Arial,8,N
+CENTERFont color=0, 0, 0
+Line style=2
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 128 255
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\FILO]
+OBJSTRNFont=鏂板畫浣�,8,N
+OBJSTRNFont color=0, 0, 0
+DISPNAMEFont=鏂板畫浣�,8,N
+DISPNAMEFont color=0, 0, 0
+LCNMFont=鏂板畫浣�,8,N
+LCNMFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=Yes
+Keep center=Yes
+Keep size=No
+Width=2400
+Height=2400
+Brush color=255 255 255
+Fill Color=No
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 0 255
+Shadow color=192 192 192
+Shadow=-1
+
+[DisplayPreferences\Symbol\PDMPCKG]
+STRNFont=Arial,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial,8,N
+DISPNAMEFont color=0, 0, 0
+LABLFont=Arial,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4800
+Height=3600
+Brush color=255 255 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 178 178 178
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\TABL]
+STRNFont=鏂板畫浣�,20,N
+STRNFont color=0 0 0
+DISPNAMEFont=鏂板畫浣�,8,N
+DISPNAMEFont color=0 0 0
+OWNRDISPNAMEFont=鏂板畫浣�,8,N
+OWNRDISPNAMEFont color=0 0 0
+ColumnsFont=鏂板畫浣�,8,N
+ColumnsFont color=0 0 0
+TablePkColumnsFont=鏂板畫浣�,8,U
+TablePkColumnsFont color=0 0 0
+TableFkColumnsFont=鏂板畫浣�,8,N
+TableFkColumnsFont color=0 0 0
+KeysFont=鏂板畫浣�,8,N
+KeysFont color=0 0 0
+IndexesFont=鏂板畫浣�,8,N
+IndexesFont color=0 0 0
+TriggersFont=鏂板畫浣�,8,N
+TriggersFont color=0 0 0
+LABLFont=鏂板畫浣�,8,N
+LABLFont color=0 0 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=15000
+Height=7500
+Brush color=178 214 252
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\VIEW]
+STRNFont=Arial,8,N
+STRNFont color=0 0 0
+DISPNAMEFont=Arial,8,N
+DISPNAMEFont color=0 0 0
+OWNRDISPNAMEFont=鏂板畫浣�,8,N
+OWNRDISPNAMEFont color=0, 0, 0
+ColumnsFont=Arial,8,N
+ColumnsFont color=0 0 0
+TablePkColumnsFont=鏂板畫浣�,8,U
+TablePkColumnsFont color=0, 0, 0
+TableFkColumnsFont=鏂板畫浣�,8,N
+TableFkColumnsFont color=0, 0, 0
+TemporaryVTablesFont=Arial,8,N
+TemporaryVTablesFont color=0 0 0
+IndexesFont=Arial,8,N
+IndexesFont color=0 0 0
+LABLFont=Arial,8,N
+LABLFont color=0 0 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4800
+Height=4000
+Brush color=233 202 131
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 128 128
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\PROC]
+STRNFont=Arial,8,N
+STRNFont color=0 0 0
+DISPNAMEFont=Arial,8,N
+DISPNAMEFont color=0 0 0
+OWNRDISPNAMEFont=鏂板畫浣�,8,N
+OWNRDISPNAMEFont color=0, 0, 0
+LABLFont=Arial,8,N
+LABLFont color=0 0 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4000
+Height=1000
+Brush color=255 255 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 108 0
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\REFR]
+SOURCEFont=鏂板畫浣�,8,N
+SOURCEFont color=0, 0, 0
+CENTERFont=鏂板畫浣�,8,N
+CENTERFont color=0, 0, 0
+DESTINATIONFont=鏂板畫浣�,8,N
+DESTINATIONFont color=0, 0, 0
+Line style=2
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 0 64
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\VREF]
+SOURCEFont=鏂板畫浣�,8,N
+SOURCEFont color=0, 0, 0
+CENTERFont=鏂板畫浣�,8,N
+CENTERFont color=0, 0, 0
+DESTINATIONFont=鏂板畫浣�,8,N
+DESTINATIONFont color=0, 0, 0
+Line style=2
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 0 64
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\USRDEPD]
+OBJXSTRFont=Arial,8,N
+OBJXSTRFont color=0 0 0
+Line style=0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=2 0 128 0 64
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\Free Symbol]
+Free TextFont=Arial,8,N
+Free TextFont color=0 0 0
+Line style=2
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 64 0
+Shadow color=192 192 192
+Shadow=0</a:DisplayPreferences>
+<a:PaperSize>(8268, 11693)</a:PaperSize>
+<a:PageMargins>((315,354), (433,354))</a:PageMargins>
+<a:PageOrientation>1</a:PageOrientation>
+<a:PaperSource>15</a:PaperSource>
+<c:Symbols>
+<o:TableSymbol Id="o855">
+<a:CreationDate>1697714781</a:CreationDate>
+<a:ModificationDate>1697714781</a:ModificationDate>
+<a:IconMode>-1</a:IconMode>
+<a:Rect>((-25519,-14172), (25519,14172))</a:Rect>
+<a:AutoAdjustToText>0</a:AutoAdjustToText>
+<a:LineColor>12615680</a:LineColor>
+<a:FillColor>16570034</a:FillColor>
+<a:ShadowColor>12632256</a:ShadowColor>
+<a:FontList>STRN 0 Courier New,11,N
+DISPNAME 0 Courier New,11,N
+OWNRDISPNAME 0 Courier New,11,N
+Columns 0 Courier New,11,N
+TablePkColumns 255 Courier New,11,N
+TableFkColumns 16711680 Courier New,11,N
+Keys 0 Courier New,11,N
+Indexes 0 Courier New,11,N
+Triggers 0 Courier New,11,N
+LABL 0 Courier New,11,N</a:FontList>
+<a:BrushStyle>6</a:BrushStyle>
+<a:GradientFillMode>65</a:GradientFillMode>
+<a:GradientEndColor>16777215</a:GradientEndColor>
+<a:ManuallyResized>1</a:ManuallyResized>
+<c:Object>
+<o:Table Ref="o856"/>
+</c:Object>
+</o:TableSymbol>
+</c:Symbols>
+</o:PhysicalDiagram>
+</c:PhysicalDiagrams>
+<c:DefaultDiagram>
+<o:PhysicalDiagram Ref="o854"/>
+</c:DefaultDiagram>
+<c:Tables>
+<o:Table Id="o856">
+<a:ObjectID>2B762509-736A-4499-A550-DD684AF654D8</a:ObjectID>
+<a:Name>浣滀笟绠$悊銆恇jgl_class_operation_manage銆�</a:Name>
+<a:Code>bjgl_class_operation_manage</a:Code>
+<a:CreationDate>1697714781</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697715128</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>浣滀笟绠$悊銆恇jgl_class_operation_manage銆�</a:Comment>
+<a:TotalSavingCurrency/>
+<c:Columns>
+<o:Column Id="o857">
+<a:ObjectID>9212C215-5862-4090-9EB3-CC583979DF71</a:ObjectID>
+<a:Name>ID</a:Name>
+<a:Code>id</a:Code>
+<a:CreationDate>1697714781</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697714781</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>ID</a:Comment>
+<a:DataType>VARCHAR(32)</a:DataType>
+<a:Length>32</a:Length>
+<a:Mandatory>1</a:Mandatory>
+</o:Column>
+<o:Column Id="o858">
+<a:ObjectID>693941DE-A93F-47F3-987F-AEF4757323D0</a:ObjectID>
+<a:Name>鐝骇id</a:Name>
+<a:Code>class_info_id</a:Code>
+<a:CreationDate>1697714781</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697714781</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鐝骇id</a:Comment>
+<a:DataType>VARCHAR(32)</a:DataType>
+<a:Length>32</a:Length>
+</o:Column>
+<o:Column Id="o859">
+<a:ObjectID>2DA5E057-E949-41B8-AE28-FFC6EB654729</a:ObjectID>
+<a:Name>鑰冨嫟鍚嶇О</a:Name>
+<a:Code>attendance_name</a:Code>
+<a:CreationDate>1697714781</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697714781</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鑰冨嫟鍚嶇О</a:Comment>
+<a:DataType>VARCHAR(200)</a:DataType>
+<a:Length>200</a:Length>
+</o:Column>
+<o:Column Id="o860">
+<a:ObjectID>4D5FFC78-4B00-4A6C-89CF-C0F73614B90F</a:ObjectID>
+<a:Name>缁撴潫鏃堕棿</a:Name>
+<a:Code>end_time</a:Code>
+<a:CreationDate>1697714781</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697714781</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>缁撴潫鏃堕棿</a:Comment>
+<a:DataType>INT8</a:DataType>
+<a:Length>8</a:Length>
+</o:Column>
+<o:Column Id="o861">
+<a:ObjectID>037B5629-A8A5-4EEE-97E4-B9A5E994B2F8</a:ObjectID>
+<a:Name>鐘舵�併��0锛氬惎鐢ㄣ��1锛氱鐢ㄣ��</a:Name>
+<a:Code>status</a:Code>
+<a:CreationDate>1697714876</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697714952</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鐘舵�併��0锛氬惎鐢ㄣ��1锛氱鐢ㄣ��</a:Comment>
+<a:DataType>INT2</a:DataType>
+<a:Length>2</a:Length>
+</o:Column>
+<o:Column Id="o862">
+<a:ObjectID>7A4D1FD8-3DC5-4AA9-BE8A-F35C1F9FC038</a:ObjectID>
+<a:Name>鍒涘缓浜�</a:Name>
+<a:Code>create_user_id</a:Code>
+<a:CreationDate>1697714781</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697714781</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍒涘缓浜�</a:Comment>
+<a:DataType>INT8</a:DataType>
+<a:Length>8</a:Length>
+</o:Column>
+<o:Column Id="o863">
+<a:ObjectID>EAE6D49A-1500-4118-922D-15F15CB5F0C9</a:ObjectID>
+<a:Name>鍒涘缓浜哄悕绉�</a:Name>
+<a:Code>create_user_name</a:Code>
+<a:CreationDate>1697714781</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697714781</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍒涘缓浜哄悕绉�</a:Comment>
+<a:DataType>VARCHAR(50)</a:DataType>
+<a:Length>50</a:Length>
+</o:Column>
+<o:Column Id="o864">
+<a:ObjectID>174A34D4-B4D0-4A44-8F3F-44DA5C7CC400</a:ObjectID>
+<a:Name>鍒涘缓鏃堕棿</a:Name>
+<a:Code>create_time</a:Code>
+<a:CreationDate>1697714781</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697714781</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍒涘缓鏃堕棿</a:Comment>
+<a:DataType>INT8</a:DataType>
+<a:Length>8</a:Length>
+</o:Column>
+<o:Column Id="o865">
+<a:ObjectID>01531F8C-0B56-4438-9EAA-138DB19E9798</a:ObjectID>
+<a:Name>鏇存柊浜�</a:Name>
+<a:Code>update_user_id</a:Code>
+<a:CreationDate>1697714781</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697714781</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鏇存柊浜�</a:Comment>
+<a:DataType>INT8</a:DataType>
+<a:Length>8</a:Length>
+</o:Column>
+<o:Column Id="o866">
+<a:ObjectID>C7B934BB-3979-4A55-A83E-CA9D1F566DBE</a:ObjectID>
+<a:Name>鏇存柊浜哄悕绉�</a:Name>
+<a:Code>update_user_name</a:Code>
+<a:CreationDate>1697714781</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697714781</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鏇存柊浜哄悕绉�</a:Comment>
+<a:DataType>VARCHAR(50)</a:DataType>
+<a:Length>50</a:Length>
+</o:Column>
+<o:Column Id="o867">
+<a:ObjectID>22507BC5-BD82-440A-AD5B-69790883D378</a:ObjectID>
+<a:Name>鏇存柊鏃堕棿</a:Name>
+<a:Code>update_time</a:Code>
+<a:CreationDate>1697714781</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697714781</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鏇存柊鏃堕棿</a:Comment>
+<a:DataType>INT8</a:DataType>
+<a:Length>8</a:Length>
+</o:Column>
+<o:Column Id="o868">
+<a:ObjectID>DF140173-FDC0-4BAA-BEF7-87B20D26A437</a:ObjectID>
+<a:Name>鍒犻櫎銆�1锛氭槸銆�0锛氬惁銆�</a:Name>
+<a:Code>is_deleted</a:Code>
+<a:CreationDate>1697714781</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697714781</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍒犻櫎銆�1锛氭槸銆�0锛氬惁銆�</a:Comment>
+<a:DataType>INT2</a:DataType>
+<a:Length>2</a:Length>
+</o:Column>
+</c:Columns>
+<c:Keys>
+<o:Key Id="o869">
+<a:ObjectID>D7DA07CB-C96A-486B-ABEB-9E44780A116C</a:ObjectID>
+<a:Name>Key_1</a:Name>
+<a:Code>Key_1</a:Code>
+<a:CreationDate>1697714781</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697714781</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<c:Key.Columns>
+<o:Column Ref="o857"/>
+</c:Key.Columns>
+</o:Key>
+</c:Keys>
+<c:PrimaryKey>
+<o:Key Ref="o869"/>
+</c:PrimaryKey>
+</o:Table>
+</c:Tables>
+</o:Package>
+</c:Packages>
 <c:DefaultDiagram>
 <o:PhysicalDiagram Ref="o682"/>
 </c:DefaultDiagram>
@@ -18973,7 +23500,7 @@
 <a:Comment>鍩硅鐝鐞嗐�恇jgl_class_info銆�</a:Comment>
 <a:TotalSavingCurrency/>
 <c:Columns>
-<o:Column Id="o685">
+<o:Column Id="o870">
 <a:ObjectID>B3CC038F-D0E5-4821-AFCD-C9E9D49DD8E0</a:ObjectID>
 <a:Name>ID</a:Name>
 <a:Code>id</a:Code>
@@ -18986,7 +23513,7 @@
 <a:Length>32</a:Length>
 <a:Mandatory>1</a:Mandatory>
 </o:Column>
-<o:Column Id="o686">
+<o:Column Id="o871">
 <a:ObjectID>B076018E-D44E-4F70-A2EB-9ECC766295FF</a:ObjectID>
 <a:Name>鍩硅鐝悕绉�</a:Name>
 <a:Code>class_info_name</a:Code>
@@ -18998,7 +23525,7 @@
 <a:DataType>VARCHAR(100)</a:DataType>
 <a:Length>100</a:Length>
 </o:Column>
-<o:Column Id="o687">
+<o:Column Id="o872">
 <a:ObjectID>30AC316F-B12F-4B1A-B449-F7417ACE4F92</a:ObjectID>
 <a:Name>鎶ュ埌鏃堕棿</a:Name>
 <a:Code>start_time</a:Code>
@@ -19010,7 +23537,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o688">
+<o:Column Id="o873">
 <a:ObjectID>D3E05094-CCC5-40FC-9135-37840439068B</a:ObjectID>
 <a:Name>杩旂▼鏃堕棿</a:Name>
 <a:Code>end_time</a:Code>
@@ -19022,7 +23549,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o689">
+<o:Column Id="o874">
 <a:ObjectID>477D9CAD-DFDF-46BF-939E-BBA7CAB0B753</a:ObjectID>
 <a:Name>鏄惁璁″垝鍐�</a:Name>
 <a:Code>is_plan</a:Code>
@@ -19034,7 +23561,7 @@
 <a:DataType>INT2</a:DataType>
 <a:Length>2</a:Length>
 </o:Column>
-<o:Column Id="o690">
+<o:Column Id="o875">
 <a:ObjectID>93A99497-B453-487B-8560-72D04BB0C96E</a:ObjectID>
 <a:Name>鍩硅璁″垝id</a:Name>
 <a:Code>plan_id</a:Code>
@@ -19046,7 +23573,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o691">
+<o:Column Id="o876">
 <a:ObjectID>30A28590-F695-4157-86EB-DC796D575EF5</a:ObjectID>
 <a:Name>鍩硅璁″垝name</a:Name>
 <a:Code>plan_name</a:Code>
@@ -19058,7 +23585,7 @@
 <a:DataType>VARCHAR(200)</a:DataType>
 <a:Length>200</a:Length>
 </o:Column>
-<o:Column Id="o692">
+<o:Column Id="o877">
 <a:ObjectID>A4AC0132-E7E0-406C-8CAC-0A85B523FE26</a:ObjectID>
 <a:Name>椤圭洰淇℃伅id</a:Name>
 <a:Code>project_id</a:Code>
@@ -19070,7 +23597,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o693">
+<o:Column Id="o878">
 <a:ObjectID>A68F6175-5F86-4B2B-9255-D34C6343C791</a:ObjectID>
 <a:Name>椤圭洰淇℃伅name</a:Name>
 <a:Code>project_name</a:Code>
@@ -19082,7 +23609,7 @@
 <a:DataType>VARCHAR(200)</a:DataType>
 <a:Length>200</a:Length>
 </o:Column>
-<o:Column Id="o694">
+<o:Column Id="o879">
 <a:ObjectID>7E9511A8-805C-4882-AC48-195E23D0D338</a:ObjectID>
 <a:Name>璁″垝浜烘暟</a:Name>
 <a:Code>plan_people_num</a:Code>
@@ -19094,7 +23621,7 @@
 <a:DataType>INT4</a:DataType>
 <a:Length>4</a:Length>
 </o:Column>
-<o:Column Id="o695">
+<o:Column Id="o880">
 <a:ObjectID>63651181-99CB-43C5-B914-229DB99F0D78</a:ObjectID>
 <a:Name>缁勭粐褰㈠紡key</a:Name>
 <a:Code>class_type_key</a:Code>
@@ -19106,7 +23633,7 @@
 <a:DataType>VARCHAR(32)</a:DataType>
 <a:Length>32</a:Length>
 </o:Column>
-<o:Column Id="o696">
+<o:Column Id="o881">
 <a:ObjectID>51C9D81C-2876-4EB0-AA52-A170E1781C2B</a:ObjectID>
 <a:Name>缁勭粐褰㈠紡value銆愮嚎涓嬮泦涓�佺嚎涓婇泦涓�佷細璁�佺珵璧涖��</a:Name>
 <a:Code>class_type_value</a:Code>
@@ -19118,7 +23645,7 @@
 <a:DataType>VARCHAR(50)</a:DataType>
 <a:Length>50</a:Length>
 </o:Column>
-<o:Column Id="o697">
+<o:Column Id="o882">
 <a:ObjectID>37A2B845-AA01-478A-9160-F2400B1394F9</a:ObjectID>
 <a:Name>涓氬姟绫诲瀷key</a:Name>
 <a:Code>business_type_key</a:Code>
@@ -19130,7 +23657,7 @@
 <a:DataType>VARCHAR(32)</a:DataType>
 <a:Length>32</a:Length>
 </o:Column>
-<o:Column Id="o698">
+<o:Column Id="o883">
 <a:ObjectID>444D8E0D-E906-4657-99FC-7377D6021940</a:ObjectID>
 <a:Name>涓氬姟绫诲瀷value</a:Name>
 <a:Code>business_type_value</a:Code>
@@ -19142,7 +23669,7 @@
 <a:DataType>VARCHAR(50)</a:DataType>
 <a:Length>50</a:Length>
 </o:Column>
-<o:Column Id="o699">
+<o:Column Id="o884">
 <a:ObjectID>94B2C495-ABEF-4EA6-9547-0B69B9D8A9EF</a:ObjectID>
 <a:Name>鑱旂郴浜�</a:Name>
 <a:Code>contact</a:Code>
@@ -19154,7 +23681,7 @@
 <a:DataType>VARCHAR(32)</a:DataType>
 <a:Length>32</a:Length>
 </o:Column>
-<o:Column Id="o700">
+<o:Column Id="o885">
 <a:ObjectID>21357875-4E3A-4C1B-B440-116A3EB5F1B2</a:ObjectID>
 <a:Name>鑱旂郴浜虹數璇�</a:Name>
 <a:Code>contact_phone</a:Code>
@@ -19166,7 +23693,7 @@
 <a:DataType>VARCHAR(32)</a:DataType>
 <a:Length>32</a:Length>
 </o:Column>
-<o:Column Id="o701">
+<o:Column Id="o886">
 <a:ObjectID>DB0A870C-0DA8-4252-9900-5955A03A0BC4</a:ObjectID>
 <a:Name>涓诲姙鍗曚綅</a:Name>
 <a:Code>org_id</a:Code>
@@ -19178,7 +23705,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o702">
+<o:Column Id="o887">
 <a:ObjectID>A816A54C-1BED-4ACC-9E08-0841A4BC373B</a:ObjectID>
 <a:Name>涓诲姙閮ㄩ棬</a:Name>
 <a:Code>org_dept_id</a:Code>
@@ -19190,7 +23717,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o703">
+<o:Column Id="o888">
 <a:ObjectID>16BAAE1E-6D9C-4E00-A9EC-434CB4A89AC6</a:ObjectID>
 <a:Name>椤圭洰绫诲瀷銆�1锛氬凡鏈夐」鐩��2锛氭柊寤洪」鐩��3锛氶潪椤圭洰鐝骇銆�</a:Name>
 <a:Code>project_item_type</a:Code>
@@ -19202,7 +23729,7 @@
 <a:DataType>INT2</a:DataType>
 <a:Length>2</a:Length>
 </o:Column>
-<o:Column Id="o704">
+<o:Column Id="o889">
 <a:ObjectID>42782182-1265-4592-8F08-950111B4C335</a:ObjectID>
 <a:Name>鍩硅瀵硅薄</a:Name>
 <a:Code>train_audience</a:Code>
@@ -19214,7 +23741,7 @@
 <a:DataType>VARCHAR(200)</a:DataType>
 <a:Length>200</a:Length>
 </o:Column>
-<o:Column Id="o705">
+<o:Column Id="o890">
 <a:ObjectID>ADECB372-FFDC-4961-9AA6-5E928E7471CF</a:ObjectID>
 <a:Name>鍩硅鍐呭</a:Name>
 <a:Code>train_information</a:Code>
@@ -19225,7 +23752,7 @@
 <a:Comment>鍩硅鍐呭</a:Comment>
 <a:DataType>TEXT</a:DataType>
 </o:Column>
-<o:Column Id="o706">
+<o:Column Id="o891">
 <a:ObjectID>D67BF862-E955-426D-8FA9-210B99196645</a:ObjectID>
 <a:Name>鏄惁鍙戣瘉銆�1锛氭槸銆�0锛氬惁銆�</a:Name>
 <a:Code>is_certification</a:Code>
@@ -19237,7 +23764,7 @@
 <a:DataType>INT2</a:DataType>
 <a:Length>2</a:Length>
 </o:Column>
-<o:Column Id="o707">
+<o:Column Id="o892">
 <a:ObjectID>C9917A5A-417E-4547-A0CD-1CC542D55838</a:ObjectID>
 <a:Name>涓婃満鎿嶄綔銆�1锛氭槸銆�0锛氬惁銆�</a:Name>
 <a:Code>is_computer</a:Code>
@@ -19249,7 +23776,7 @@
 <a:DataType>INT2</a:DataType>
 <a:Length>2</a:Length>
 </o:Column>
-<o:Column Id="o708">
+<o:Column Id="o893">
 <a:ObjectID>6C8958A3-EBA9-4531-A300-C17797F8C085</a:ObjectID>
 <a:Name>涓婃満鐜绫诲瀷</a:Name>
 <a:Code>computer_type_key</a:Code>
@@ -19261,7 +23788,7 @@
 <a:DataType>VARCHAR(32)</a:DataType>
 <a:Length>32</a:Length>
 </o:Column>
-<o:Column Id="o709">
+<o:Column Id="o894">
 <a:ObjectID>E405EB5E-50DB-440D-95AE-C87750F6EDE9</a:ObjectID>
 <a:Name>涓婃満鐜绫诲瀷value</a:Name>
 <a:Code>computer_type_value</a:Code>
@@ -19273,7 +23800,7 @@
 <a:DataType>VARCHAR(50)</a:DataType>
 <a:Length>50</a:Length>
 </o:Column>
-<o:Column Id="o710">
+<o:Column Id="o895">
 <a:ObjectID>8A7530CC-39E4-4E7D-88BC-6AFA4B160A88</a:ObjectID>
 <a:Name>澶囨敞</a:Name>
 <a:Code>remark</a:Code>
@@ -19285,7 +23812,7 @@
 <a:DataType>VARCHAR(300)</a:DataType>
 <a:Length>300</a:Length>
 </o:Column>
-<o:Column Id="o711">
+<o:Column Id="o896">
 <a:ObjectID>801C9899-30C5-4A28-A1E6-B988860960F0</a:ObjectID>
 <a:Name>鐘舵�併��-1锛氬欢鏈熴��0锛氭湭鍙戝竷銆�1锛氭湭缁撶彮銆�2锛氬凡缁撶彮銆�</a:Name>
 <a:Code>status</a:Code>
@@ -19297,7 +23824,7 @@
 <a:DataType>INT2</a:DataType>
 <a:Length>2</a:Length>
 </o:Column>
-<o:Column Id="o712">
+<o:Column Id="o897">
 <a:ObjectID>C9EDF172-CEDC-4D4A-A862-5F2ED417466B</a:ObjectID>
 <a:Name>鎵�灞炲熀鍦�</a:Name>
 <a:Code>base_id</a:Code>
@@ -19309,7 +23836,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o713">
+<o:Column Id="o898">
 <a:ObjectID>78F4ABF1-85E8-4429-A6CD-27F73F007CB5</a:ObjectID>
 <a:Name>鎵�灞炲熀鍦板悕绉�(鍐椾綑瀛楁)</a:Name>
 <a:Code>base_name</a:Code>
@@ -19321,7 +23848,7 @@
 <a:DataType>VARCHAR(100)</a:DataType>
 <a:Length>100</a:Length>
 </o:Column>
-<o:Column Id="o714">
+<o:Column Id="o899">
 <a:ObjectID>4269438D-C1F6-4525-B2D1-8B49C68BA464</a:ObjectID>
 <a:Name>鍒涘缓浜�</a:Name>
 <a:Code>create_user_id</a:Code>
@@ -19333,7 +23860,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o715">
+<o:Column Id="o900">
 <a:ObjectID>833B32BC-09F8-4488-9FDC-B418E6CD047D</a:ObjectID>
 <a:Name>鍒涘缓鏃堕棿</a:Name>
 <a:Code>create_time</a:Code>
@@ -19345,7 +23872,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o716">
+<o:Column Id="o901">
 <a:ObjectID>65076A02-4DB0-4B83-96CD-665E9F6653C2</a:ObjectID>
 <a:Name>鏈�鍚庢洿鏂颁汉</a:Name>
 <a:Code>last_update_user_id</a:Code>
@@ -19357,7 +23884,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o717">
+<o:Column Id="o902">
 <a:ObjectID>4BC98866-933D-4DEB-880E-B0F17ACFAC41</a:ObjectID>
 <a:Name>鏈�鍚庢洿鏂版椂闂�</a:Name>
 <a:Code>last_update_time</a:Code>
@@ -19369,7 +23896,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o718">
+<o:Column Id="o903">
 <a:ObjectID>26BB9223-00DC-44D1-B8E5-DF3EFC5D7394</a:ObjectID>
 <a:Name>鏄惁鍒犻櫎銆�1锛氭槸銆�0锛氬惁銆�</a:Name>
 <a:Code>is_deleted</a:Code>
@@ -19383,7 +23910,7 @@
 </o:Column>
 </c:Columns>
 <c:Keys>
-<o:Key Id="o719">
+<o:Key Id="o904">
 <a:ObjectID>7C92ACA3-0825-4D6E-99A8-385096896A2B</a:ObjectID>
 <a:Name>Key_1</a:Name>
 <a:Code>Key_1</a:Code>
@@ -19392,17 +23919,17 @@
 <a:ModificationDate>1697080078</a:ModificationDate>
 <a:Modifier>WYH</a:Modifier>
 <c:Key.Columns>
-<o:Column Ref="o685"/>
+<o:Column Ref="o870"/>
 </c:Key.Columns>
 </o:Key>
 </c:Keys>
 <c:PrimaryKey>
-<o:Key Ref="o719"/>
+<o:Key Ref="o904"/>
 </c:PrimaryKey>
 </o:Table>
 </c:Tables>
 </o:Package>
-<o:Package Id="o720">
+<o:Package Id="o905">
 <a:ObjectID>E570D161-AC47-4CCC-A371-C8B751970C97</a:ObjectID>
 <a:Name>绯荤粺璁剧疆-鐜嬪畤鑸�</a:Name>
 <a:Code>绯荤粺璁剧疆-鐜嬪畤鑸�</a:Code>
@@ -19411,7 +23938,7 @@
 <a:ModificationDate>1697444956</a:ModificationDate>
 <a:Modifier>WYH</a:Modifier>
 <c:PhysicalDiagrams>
-<o:PhysicalDiagram Id="o721">
+<o:PhysicalDiagram Id="o906">
 <a:ObjectID>39F55249-0989-4628-998C-9493EAC37E0C</a:ObjectID>
 <a:Name>鍏ㄧ綉鍙傛暟绠$悊</a:Name>
 <a:Code>鍏ㄧ綉鍙傛暟绠$悊</a:Code>
@@ -19890,7 +24417,7 @@
 <a:PageOrientation>1</a:PageOrientation>
 <a:PaperSource>15</a:PaperSource>
 <c:Symbols>
-<o:TableSymbol Id="o722">
+<o:TableSymbol Id="o907">
 <a:CreationDate>1697271770</a:CreationDate>
 <a:ModificationDate>1697426386</a:ModificationDate>
 <a:IconMode>-1</a:IconMode>
@@ -19914,10 +24441,10 @@
 <a:GradientEndColor>16777215</a:GradientEndColor>
 <a:ManuallyResized>1</a:ManuallyResized>
 <c:Object>
-<o:Table Ref="o723"/>
+<o:Table Ref="o908"/>
 </c:Object>
 </o:TableSymbol>
-<o:PackageSymbol Id="o724">
+<o:PackageSymbol Id="o909">
 <a:CreationDate>1697424270</a:CreationDate>
 <a:ModificationDate>1697426462</a:ModificationDate>
 <a:IconMode>-1</a:IconMode>
@@ -19934,10 +24461,10 @@
 <a:GradientEndColor>16777215</a:GradientEndColor>
 <a:ManuallyResized>1</a:ManuallyResized>
 <c:Object>
-<o:Package Ref="o725"/>
+<o:Package Ref="o910"/>
 </c:Object>
 </o:PackageSymbol>
-<o:PackageSymbol Id="o726">
+<o:PackageSymbol Id="o911">
 <a:CreationDate>1697435228</a:CreationDate>
 <a:ModificationDate>1697435385</a:ModificationDate>
 <a:IconMode>-1</a:IconMode>
@@ -19954,10 +24481,10 @@
 <a:GradientEndColor>16777215</a:GradientEndColor>
 <a:ManuallyResized>1</a:ManuallyResized>
 <c:Object>
-<o:Package Ref="o727"/>
+<o:Package Ref="o912"/>
 </c:Object>
 </o:PackageSymbol>
-<o:PackageSymbol Id="o728">
+<o:PackageSymbol Id="o913">
 <a:CreationDate>1697435570</a:CreationDate>
 <a:ModificationDate>1697435622</a:ModificationDate>
 <a:IconMode>-1</a:IconMode>
@@ -19974,10 +24501,10 @@
 <a:GradientEndColor>16777215</a:GradientEndColor>
 <a:ManuallyResized>1</a:ManuallyResized>
 <c:Object>
-<o:Package Ref="o729"/>
+<o:Package Ref="o914"/>
 </c:Object>
 </o:PackageSymbol>
-<o:PackageSymbol Id="o730">
+<o:PackageSymbol Id="o915">
 <a:CreationDate>1697435959</a:CreationDate>
 <a:ModificationDate>1697435988</a:ModificationDate>
 <a:IconMode>-1</a:IconMode>
@@ -19994,10 +24521,10 @@
 <a:GradientEndColor>16777215</a:GradientEndColor>
 <a:ManuallyResized>1</a:ManuallyResized>
 <c:Object>
-<o:Package Ref="o731"/>
+<o:Package Ref="o916"/>
 </c:Object>
 </o:PackageSymbol>
-<o:PackageSymbol Id="o732">
+<o:PackageSymbol Id="o917">
 <a:CreationDate>1697444948</a:CreationDate>
 <a:ModificationDate>1697444964</a:ModificationDate>
 <a:IconMode>-1</a:IconMode>
@@ -20014,14 +24541,14 @@
 <a:GradientEndColor>16777215</a:GradientEndColor>
 <a:ManuallyResized>1</a:ManuallyResized>
 <c:Object>
-<o:Package Ref="o733"/>
+<o:Package Ref="o918"/>
 </c:Object>
 </o:PackageSymbol>
 </c:Symbols>
 </o:PhysicalDiagram>
 </c:PhysicalDiagrams>
 <c:Packages>
-<o:Package Id="o725">
+<o:Package Id="o910">
 <a:ObjectID>0129047A-4DA7-4E63-8FA5-A2E90280AB2B</a:ObjectID>
 <a:Name>銆愭柊闂绘爮鐩�佹柊闂讳俊鎭�佽疆鎾浘銆�</a:Name>
 <a:Code>銆愭柊闂绘爮鐩�佹柊闂讳俊鎭�佽疆鎾浘銆�</a:Code>
@@ -20030,7 +24557,7 @@
 <a:ModificationDate>1697507298</a:ModificationDate>
 <a:Modifier>WYH</a:Modifier>
 <c:PhysicalDiagrams>
-<o:PhysicalDiagram Id="o734">
+<o:PhysicalDiagram Id="o919">
 <a:ObjectID>DD94CC8F-CCC7-468E-A576-90AD4CE12BD4</a:ObjectID>
 <a:Name>鏂伴椈銆佽疆鎾�</a:Name>
 <a:Code>鏂伴椈銆佽疆鎾�</a:Code>
@@ -20448,7 +24975,7 @@
 <a:PageOrientation>1</a:PageOrientation>
 <a:PaperSource>15</a:PaperSource>
 <c:Symbols>
-<o:TableSymbol Id="o735">
+<o:TableSymbol Id="o920">
 <a:CreationDate>1697425835</a:CreationDate>
 <a:ModificationDate>1697441183</a:ModificationDate>
 <a:IconMode>-1</a:IconMode>
@@ -20472,10 +24999,10 @@
 <a:GradientEndColor>16777215</a:GradientEndColor>
 <a:ManuallyResized>1</a:ManuallyResized>
 <c:Object>
-<o:Table Ref="o736"/>
+<o:Table Ref="o921"/>
 </c:Object>
 </o:TableSymbol>
-<o:TableSymbol Id="o737">
+<o:TableSymbol Id="o922">
 <a:CreationDate>1697425835</a:CreationDate>
 <a:ModificationDate>1697425835</a:ModificationDate>
 <a:IconMode>-1</a:IconMode>
@@ -20499,10 +25026,10 @@
 <a:GradientEndColor>16777215</a:GradientEndColor>
 <a:ManuallyResized>1</a:ManuallyResized>
 <c:Object>
-<o:Table Ref="o738"/>
+<o:Table Ref="o923"/>
 </c:Object>
 </o:TableSymbol>
-<o:TableSymbol Id="o739">
+<o:TableSymbol Id="o924">
 <a:CreationDate>1697425835</a:CreationDate>
 <a:ModificationDate>1697447927</a:ModificationDate>
 <a:IconMode>-1</a:IconMode>
@@ -20526,10 +25053,10 @@
 <a:GradientEndColor>16777215</a:GradientEndColor>
 <a:ManuallyResized>1</a:ManuallyResized>
 <c:Object>
-<o:Table Ref="o740"/>
+<o:Table Ref="o925"/>
 </c:Object>
 </o:TableSymbol>
-<o:TableSymbol Id="o741">
+<o:TableSymbol Id="o926">
 <a:CreationDate>1697507298</a:CreationDate>
 <a:ModificationDate>1697511713</a:ModificationDate>
 <a:IconMode>-1</a:IconMode>
@@ -20553,17 +25080,17 @@
 <a:GradientEndColor>16777215</a:GradientEndColor>
 <a:ManuallyResized>1</a:ManuallyResized>
 <c:Object>
-<o:Table Ref="o742"/>
+<o:Table Ref="o927"/>
 </c:Object>
 </o:TableSymbol>
 </c:Symbols>
 </o:PhysicalDiagram>
 </c:PhysicalDiagrams>
 <c:DefaultDiagram>
-<o:PhysicalDiagram Ref="o734"/>
+<o:PhysicalDiagram Ref="o919"/>
 </c:DefaultDiagram>
 <c:Tables>
-<o:Table Id="o736">
+<o:Table Id="o921">
 <a:ObjectID>E55244B5-8573-4B56-934D-A7ED0CE98365</a:ObjectID>
 <a:Name>鏂伴椈淇℃伅銆恇ase_news銆�</a:Name>
 <a:Code>base_news</a:Code>
@@ -20574,7 +25101,7 @@
 <a:Comment>鏂伴椈淇℃伅銆恇ase_news銆�</a:Comment>
 <a:TotalSavingCurrency/>
 <c:Columns>
-<o:Column Id="o743">
+<o:Column Id="o928">
 <a:ObjectID>CEE7A25B-F55D-4533-8A51-A301C6B413D3</a:ObjectID>
 <a:Name>ID</a:Name>
 <a:Code>id</a:Code>
@@ -20587,7 +25114,7 @@
 <a:Length>32</a:Length>
 <a:Mandatory>1</a:Mandatory>
 </o:Column>
-<o:Column Id="o744">
+<o:Column Id="o929">
 <a:ObjectID>27432137-5B1C-4F6C-B8DD-C5BF84BF74F2</a:ObjectID>
 <a:Name>鏂伴椈鏍囬</a:Name>
 <a:Code>title</a:Code>
@@ -20599,7 +25126,7 @@
 <a:DataType>VARCHAR(200)</a:DataType>
 <a:Length>200</a:Length>
 </o:Column>
-<o:Column Id="o745">
+<o:Column Id="o930">
 <a:ObjectID>428F2F94-0832-415A-B9BF-DA523DC4979B</a:ObjectID>
 <a:Name>鏄剧ず寮�濮嬫椂闂�</a:Name>
 <a:Code>start_time</a:Code>
@@ -20611,7 +25138,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o746">
+<o:Column Id="o931">
 <a:ObjectID>64D6BB11-CBD1-4AF8-8ACA-FE61A08D3CD3</a:ObjectID>
 <a:Name>鏄剧ず缁撴潫鏃堕棿</a:Name>
 <a:Code>end_time</a:Code>
@@ -20623,7 +25150,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o747">
+<o:Column Id="o932">
 <a:ObjectID>2B0F9E29-7DA7-44C3-8E65-5B28242A04B2</a:ObjectID>
 <a:Name>鏂伴椈鏍忕洰绠$悊銆恇ase_news_column銆�</a:Name>
 <a:Code>news_column_id</a:Code>
@@ -20636,7 +25163,7 @@
 <a:DataType>VARCHAR(32)</a:DataType>
 <a:Length>32</a:Length>
 </o:Column>
-<o:Column Id="o748">
+<o:Column Id="o933">
 <a:ObjectID>B092258A-9E88-47E8-A801-016F6A018E51</a:ObjectID>
 <a:Name>鏂伴椈鏍忕洰绠$悊銆恇ase_news_column銆憂ame</a:Name>
 <a:Code>news_column_name</a:Code>
@@ -20648,7 +25175,7 @@
 <a:DataType>VARCHAR(200)</a:DataType>
 <a:Length>200</a:Length>
 </o:Column>
-<o:Column Id="o749">
+<o:Column Id="o934">
 <a:ObjectID>7A773CA4-830B-4EC5-8FB9-A80AE53E8560</a:ObjectID>
 <a:Name>鎽樿</a:Name>
 <a:Code>summary</a:Code>
@@ -20660,7 +25187,7 @@
 <a:DataType>VARCHAR(300)</a:DataType>
 <a:Length>300</a:Length>
 </o:Column>
-<o:Column Id="o750">
+<o:Column Id="o935">
 <a:ObjectID>BE8044A3-0EB8-4288-9F32-91867B5F26DF</a:ObjectID>
 <a:Name>鍐呭</a:Name>
 <a:Code>content</a:Code>
@@ -20671,7 +25198,7 @@
 <a:Comment>鍐呭</a:Comment>
 <a:DataType>TEXT</a:DataType>
 </o:Column>
-<o:Column Id="o751">
+<o:Column Id="o936">
 <a:ObjectID>C6F6852D-B03E-4A46-BB91-10F96347FADC</a:ObjectID>
 <a:Name>灏侀潰鍥�</a:Name>
 <a:Code>cover_image</a:Code>
@@ -20683,7 +25210,7 @@
 <a:DataType>VARCHAR(200)</a:DataType>
 <a:Length>200</a:Length>
 </o:Column>
-<o:Column Id="o752">
+<o:Column Id="o937">
 <a:ObjectID>3FEDB528-31B8-4ACB-B86C-54242240A53D</a:ObjectID>
 <a:Name>娴忚浜烘暟</a:Name>
 <a:Code>see_num</a:Code>
@@ -20695,7 +25222,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o753">
+<o:Column Id="o938">
 <a:ObjectID>25EBF816-107C-478E-9761-7375D9D814A7</a:ObjectID>
 <a:Name>鏄惁缃《銆�0锛氬惁 1锛氭槸銆�</a:Name>
 <a:Code>is_top</a:Code>
@@ -20707,7 +25234,7 @@
 <a:DataType>INT2</a:DataType>
 <a:Length>2</a:Length>
 </o:Column>
-<o:Column Id="o754">
+<o:Column Id="o939">
 <a:ObjectID>A22173BE-BD00-4D53-A2D1-D2E57E0D04CF</a:ObjectID>
 <a:Name>椤哄簭鍙�</a:Name>
 <a:Code>order_num</a:Code>
@@ -20719,7 +25246,7 @@
 <a:DataType>INT2</a:DataType>
 <a:Length>2</a:Length>
 </o:Column>
-<o:Column Id="o755">
+<o:Column Id="o940">
 <a:ObjectID>2D5FBCEF-E937-45BB-B1A1-00EF55C0CF12</a:ObjectID>
 <a:Name>鏄惁鍏ㄧ綉</a:Name>
 <a:Code>is_default</a:Code>
@@ -20731,7 +25258,7 @@
 <a:DataType>INT2</a:DataType>
 <a:Length>2</a:Length>
 </o:Column>
-<o:Column Id="o756">
+<o:Column Id="o941">
 <a:ObjectID>E0DFC904-6D27-4EAC-9CA2-55848C64F76A</a:ObjectID>
 <a:Name>鎵�灞炲熀鍦�</a:Name>
 <a:Code>base_id</a:Code>
@@ -20743,7 +25270,7 @@
 <a:DataType>VARCHAR(32)</a:DataType>
 <a:Length>32</a:Length>
 </o:Column>
-<o:Column Id="o757">
+<o:Column Id="o942">
 <a:ObjectID>349611E0-68AE-4AF9-9E41-EF93125A5AF2</a:ObjectID>
 <a:Name>鎵�灞炲熀鍦板悕绉�</a:Name>
 <a:Code>base_name</a:Code>
@@ -20755,7 +25282,7 @@
 <a:DataType>VARCHAR(50)</a:DataType>
 <a:Length>50</a:Length>
 </o:Column>
-<o:Column Id="o758">
+<o:Column Id="o943">
 <a:ObjectID>045264CE-64AE-4D0B-BCBB-95E6EDAC8773</a:ObjectID>
 <a:Name>鐘舵�併��0锛氭槸銆�1锛氬惁銆�2锛氬垹闄ゃ��</a:Name>
 <a:Code>status</a:Code>
@@ -20767,7 +25294,7 @@
 <a:DataType>INT2</a:DataType>
 <a:Length>2</a:Length>
 </o:Column>
-<o:Column Id="o759">
+<o:Column Id="o944">
 <a:ObjectID>77BE4072-DDD3-48CE-9C73-3F034BD5C663</a:ObjectID>
 <a:Name>鍒涘缓浜�</a:Name>
 <a:Code>create_user_id</a:Code>
@@ -20779,7 +25306,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o760">
+<o:Column Id="o945">
 <a:ObjectID>7061AF43-B702-497C-8A75-9F1959EDEA9F</a:ObjectID>
 <a:Name>鍒涘缓浜哄悕绉�</a:Name>
 <a:Code>create_user_name</a:Code>
@@ -20791,7 +25318,7 @@
 <a:DataType>VARCHAR(50)</a:DataType>
 <a:Length>50</a:Length>
 </o:Column>
-<o:Column Id="o761">
+<o:Column Id="o946">
 <a:ObjectID>A094C1C2-4596-41FD-8CEE-0B6F83592190</a:ObjectID>
 <a:Name>鍒涘缓鏃堕棿</a:Name>
 <a:Code>create_time</a:Code>
@@ -20803,7 +25330,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o762">
+<o:Column Id="o947">
 <a:ObjectID>415F7EEC-DC95-4A03-9582-6E924FF94910</a:ObjectID>
 <a:Name>鏇存柊浜�</a:Name>
 <a:Code>update_user_id</a:Code>
@@ -20815,7 +25342,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o763">
+<o:Column Id="o948">
 <a:ObjectID>2E29D0D1-73A3-4764-9D9C-C355964D4865</a:ObjectID>
 <a:Name>鏇存柊浜哄悕绉�</a:Name>
 <a:Code>update_user_name</a:Code>
@@ -20827,7 +25354,7 @@
 <a:DataType>VARCHAR(50)</a:DataType>
 <a:Length>50</a:Length>
 </o:Column>
-<o:Column Id="o764">
+<o:Column Id="o949">
 <a:ObjectID>73E6FF1A-7CF6-4937-BB04-6C3245B04F41</a:ObjectID>
 <a:Name>鏇存柊鏃堕棿</a:Name>
 <a:Code>update_time</a:Code>
@@ -20841,7 +25368,7 @@
 </o:Column>
 </c:Columns>
 <c:Keys>
-<o:Key Id="o765">
+<o:Key Id="o950">
 <a:ObjectID>59E08D38-4F89-4B37-B060-ADE0526E4127</a:ObjectID>
 <a:Name>Key_1</a:Name>
 <a:Code>Key_1</a:Code>
@@ -20850,15 +25377,15 @@
 <a:ModificationDate>1697425835</a:ModificationDate>
 <a:Modifier>WYH</a:Modifier>
 <c:Key.Columns>
-<o:Column Ref="o743"/>
+<o:Column Ref="o928"/>
 </c:Key.Columns>
 </o:Key>
 </c:Keys>
 <c:PrimaryKey>
-<o:Key Ref="o765"/>
+<o:Key Ref="o950"/>
 </c:PrimaryKey>
 </o:Table>
-<o:Table Id="o738">
+<o:Table Id="o923">
 <a:ObjectID>9F5BAA41-72C0-4823-ABF4-AACBEEC15E46</a:ObjectID>
 <a:Name>杞挱鍥剧鐞嗐�恇ase_carousel銆�</a:Name>
 <a:Code>base_carousel</a:Code>
@@ -20869,7 +25396,7 @@
 <a:Comment>杞挱鍥剧鐞嗐�恇ase_carousel銆�</a:Comment>
 <a:TotalSavingCurrency/>
 <c:Columns>
-<o:Column Id="o766">
+<o:Column Id="o951">
 <a:ObjectID>309D95C6-C771-4937-891E-58C376BF77F2</a:ObjectID>
 <a:Name>ID</a:Name>
 <a:Code>id</a:Code>
@@ -20882,7 +25409,7 @@
 <a:Length>32</a:Length>
 <a:Mandatory>1</a:Mandatory>
 </o:Column>
-<o:Column Id="o767">
+<o:Column Id="o952">
 <a:ObjectID>08DD3F3A-CA84-4947-A18A-7620EE7AD538</a:ObjectID>
 <a:Name>鏍囬</a:Name>
 <a:Code>title</a:Code>
@@ -20894,7 +25421,7 @@
 <a:DataType>VARCHAR(200)</a:DataType>
 <a:Length>200</a:Length>
 </o:Column>
-<o:Column Id="o768">
+<o:Column Id="o953">
 <a:ObjectID>D084381E-54D3-4555-8A69-283D767CED9D</a:ObjectID>
 <a:Name>閾炬帴鍦板潃</a:Name>
 <a:Code>link_url</a:Code>
@@ -20906,7 +25433,7 @@
 <a:DataType>VARCHAR(200)</a:DataType>
 <a:Length>200</a:Length>
 </o:Column>
-<o:Column Id="o769">
+<o:Column Id="o954">
 <a:ObjectID>61D700ED-495D-4CA2-B8E4-E86AA3260497</a:ObjectID>
 <a:Name>灏侀潰鍥�</a:Name>
 <a:Code>cover_image</a:Code>
@@ -20918,7 +25445,7 @@
 <a:DataType>VARCHAR(300)</a:DataType>
 <a:Length>300</a:Length>
 </o:Column>
-<o:Column Id="o770">
+<o:Column Id="o955">
 <a:ObjectID>194F464F-5353-498D-BA4D-DCE64BD1D5A4</a:ObjectID>
 <a:Name>椤哄簭鍙�</a:Name>
 <a:Code>order_num</a:Code>
@@ -20930,7 +25457,7 @@
 <a:DataType>INT2</a:DataType>
 <a:Length>2</a:Length>
 </o:Column>
-<o:Column Id="o771">
+<o:Column Id="o956">
 <a:ObjectID>41033361-7108-48F4-8E06-95DD3F295F8E</a:ObjectID>
 <a:Name>鐘舵�併��0锛氬惎鐢ㄣ��1锛氱鐢ㄣ��2锛氬垹闄ゃ��</a:Name>
 <a:Code>status</a:Code>
@@ -20942,7 +25469,7 @@
 <a:DataType>INT2</a:DataType>
 <a:Length>2</a:Length>
 </o:Column>
-<o:Column Id="o772">
+<o:Column Id="o957">
 <a:ObjectID>FF237BA5-F28B-4087-8B38-56A6289DBBD1</a:ObjectID>
 <a:Name>鍒涘缓浜�</a:Name>
 <a:Code>create_user_id</a:Code>
@@ -20954,7 +25481,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o773">
+<o:Column Id="o958">
 <a:ObjectID>78D3ED45-00AF-4BD8-BCFF-31BE570C2534</a:ObjectID>
 <a:Name>鍒涘缓鏃堕棿</a:Name>
 <a:Code>create_time</a:Code>
@@ -20966,7 +25493,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o774">
+<o:Column Id="o959">
 <a:ObjectID>DF5DC0F8-DB02-481E-9034-59A634F8B28D</a:ObjectID>
 <a:Name>鏇存柊浜�</a:Name>
 <a:Code>update_user_id</a:Code>
@@ -20978,7 +25505,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o775">
+<o:Column Id="o960">
 <a:ObjectID>A22C9979-DCC3-4DC1-B6F7-C74522E2AE77</a:ObjectID>
 <a:Name>鏇存柊鏃堕棿</a:Name>
 <a:Code>update_time</a:Code>
@@ -20992,7 +25519,7 @@
 </o:Column>
 </c:Columns>
 <c:Keys>
-<o:Key Id="o776">
+<o:Key Id="o961">
 <a:ObjectID>0374186F-B0B4-42B3-8F11-78DAD1287736</a:ObjectID>
 <a:Name>Key_1</a:Name>
 <a:Code>Key_1</a:Code>
@@ -21001,15 +25528,15 @@
 <a:ModificationDate>1697425835</a:ModificationDate>
 <a:Modifier>WYH</a:Modifier>
 <c:Key.Columns>
-<o:Column Ref="o766"/>
+<o:Column Ref="o951"/>
 </c:Key.Columns>
 </o:Key>
 </c:Keys>
 <c:PrimaryKey>
-<o:Key Ref="o776"/>
+<o:Key Ref="o961"/>
 </c:PrimaryKey>
 </o:Table>
-<o:Table Id="o740">
+<o:Table Id="o925">
 <a:ObjectID>7E1C4EF4-468B-41C1-BA08-0337E2ED38FB</a:ObjectID>
 <a:Name>鏂伴椈鏍忕洰绠$悊銆恇ase_news_column銆�</a:Name>
 <a:Code>base_news_column</a:Code>
@@ -21020,7 +25547,7 @@
 <a:Comment>鏂伴椈鏍忕洰绠$悊銆恇ase_news_column銆�</a:Comment>
 <a:TotalSavingCurrency/>
 <c:Columns>
-<o:Column Id="o777">
+<o:Column Id="o962">
 <a:ObjectID>8EBBC5BA-BD82-4709-AB2F-9ACCBAE4B080</a:ObjectID>
 <a:Name>ID</a:Name>
 <a:Code>id</a:Code>
@@ -21033,7 +25560,7 @@
 <a:Length>32</a:Length>
 <a:Mandatory>1</a:Mandatory>
 </o:Column>
-<o:Column Id="o778">
+<o:Column Id="o963">
 <a:ObjectID>82E30610-6D20-44FE-8142-B934081352BC</a:ObjectID>
 <a:Name>鏍忕洰鍚嶇О</a:Name>
 <a:Code>title</a:Code>
@@ -21045,7 +25572,7 @@
 <a:DataType>VARCHAR(200)</a:DataType>
 <a:Length>200</a:Length>
 </o:Column>
-<o:Column Id="o779">
+<o:Column Id="o964">
 <a:ObjectID>8E1B1183-09DE-4C83-8DEC-ED90B00DD6F3</a:ObjectID>
 <a:Name>鐘舵�併��0锛氬惎鐢ㄣ��1锛氱鐢ㄣ��2锛氬垹闄ゃ��</a:Name>
 <a:Code>status</a:Code>
@@ -21057,7 +25584,7 @@
 <a:DataType>INT2</a:DataType>
 <a:Length>2</a:Length>
 </o:Column>
-<o:Column Id="o780">
+<o:Column Id="o965">
 <a:ObjectID>12D3D52A-F63C-469A-8535-07CBE9F53F19</a:ObjectID>
 <a:Name>椤哄簭鍙�</a:Name>
 <a:Code>order_num</a:Code>
@@ -21069,7 +25596,7 @@
 <a:DataType>INT2</a:DataType>
 <a:Length>2</a:Length>
 </o:Column>
-<o:Column Id="o781">
+<o:Column Id="o966">
 <a:ObjectID>09F4144C-CA50-4563-B095-65FFE0B3FC77</a:ObjectID>
 <a:Name>澶囨敞</a:Name>
 <a:Code>remark</a:Code>
@@ -21081,7 +25608,7 @@
 <a:DataType>VARCHAR(200)</a:DataType>
 <a:Length>200</a:Length>
 </o:Column>
-<o:Column Id="o782">
+<o:Column Id="o967">
 <a:ObjectID>D1BBEF88-49D5-428F-84C2-0ABAF9BAA0C3</a:ObjectID>
 <a:Name>鍒涘缓浜�</a:Name>
 <a:Code>create_user_id</a:Code>
@@ -21093,7 +25620,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o783">
+<o:Column Id="o968">
 <a:ObjectID>ACA8573A-8AB9-4F74-B09D-67D8E2872062</a:ObjectID>
 <a:Name>鍒涘缓浜哄悕绉�</a:Name>
 <a:Code>create_user_name</a:Code>
@@ -21105,7 +25632,7 @@
 <a:DataType>VARCHAR(50)</a:DataType>
 <a:Length>50</a:Length>
 </o:Column>
-<o:Column Id="o784">
+<o:Column Id="o969">
 <a:ObjectID>A9BA3E69-ECC3-463C-AA84-68856A164434</a:ObjectID>
 <a:Name>鍒涘缓鏃堕棿</a:Name>
 <a:Code>create_time</a:Code>
@@ -21117,7 +25644,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o785">
+<o:Column Id="o970">
 <a:ObjectID>B322F906-5BA8-42CC-99F2-6B043222E361</a:ObjectID>
 <a:Name>鏇存柊浜�</a:Name>
 <a:Code>update_user_id</a:Code>
@@ -21129,7 +25656,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o786">
+<o:Column Id="o971">
 <a:ObjectID>BD34E30C-A696-42EE-A1E9-034E3D27987D</a:ObjectID>
 <a:Name>鏇存柊浜哄悕绉�</a:Name>
 <a:Code>update_user_name</a:Code>
@@ -21141,7 +25668,7 @@
 <a:DataType>VARCHAR(50)</a:DataType>
 <a:Length>50</a:Length>
 </o:Column>
-<o:Column Id="o787">
+<o:Column Id="o972">
 <a:ObjectID>8E62470E-FA91-4BAA-8922-99F49D3C3E35</a:ObjectID>
 <a:Name>鏇存柊鏃堕棿</a:Name>
 <a:Code>update_time</a:Code>
@@ -21155,7 +25682,7 @@
 </o:Column>
 </c:Columns>
 <c:Keys>
-<o:Key Id="o788">
+<o:Key Id="o973">
 <a:ObjectID>74EE835D-5DEC-4AB9-83AD-27C8B3B3070A</a:ObjectID>
 <a:Name>Key_1</a:Name>
 <a:Code>Key_1</a:Code>
@@ -21164,15 +25691,15 @@
 <a:ModificationDate>1697425835</a:ModificationDate>
 <a:Modifier>WYH</a:Modifier>
 <c:Key.Columns>
-<o:Column Ref="o777"/>
+<o:Column Ref="o962"/>
 </c:Key.Columns>
 </o:Key>
 </c:Keys>
 <c:PrimaryKey>
-<o:Key Ref="o788"/>
+<o:Key Ref="o973"/>
 </c:PrimaryKey>
 </o:Table>
-<o:Table Id="o742">
+<o:Table Id="o927">
 <a:ObjectID>1E77FF9E-9124-4201-9CC3-040BB80032F0</a:ObjectID>
 <a:Name>涓婁紶鏂囦欢璁板綍琛ㄣ�恇ase_file_history銆�</a:Name>
 <a:Code>base_file_history</a:Code>
@@ -21183,7 +25710,7 @@
 <a:Comment>涓婁紶鏂囦欢璁板綍琛ㄣ�恇ase_file_history銆�</a:Comment>
 <a:TotalSavingCurrency/>
 <c:Columns>
-<o:Column Id="o789">
+<o:Column Id="o974">
 <a:ObjectID>B333C464-8DE5-450D-BF3D-E3B2F68D1719</a:ObjectID>
 <a:Name>ID</a:Name>
 <a:Code>id</a:Code>
@@ -21196,7 +25723,7 @@
 <a:Length>32</a:Length>
 <a:Mandatory>1</a:Mandatory>
 </o:Column>
-<o:Column Id="o790">
+<o:Column Id="o975">
 <a:ObjectID>4D72BAE4-F701-4226-A671-5281703C0F82</a:ObjectID>
 <a:Name>鍒涘缓浜�</a:Name>
 <a:Code>create_user_id</a:Code>
@@ -21208,7 +25735,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o791">
+<o:Column Id="o976">
 <a:ObjectID>F3186FC6-C7D5-487B-B7E8-BFCC537E6466</a:ObjectID>
 <a:Name>鍒涘缓浜哄悕绉�</a:Name>
 <a:Code>create_user_name</a:Code>
@@ -21220,7 +25747,7 @@
 <a:DataType>VARCHAR(50)</a:DataType>
 <a:Length>50</a:Length>
 </o:Column>
-<o:Column Id="o792">
+<o:Column Id="o977">
 <a:ObjectID>A0F15CE8-CD2C-451A-A569-8F1DBEFFDDDD</a:ObjectID>
 <a:Name>鍒涘缓鏃堕棿</a:Name>
 <a:Code>create_time</a:Code>
@@ -21232,7 +25759,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o793">
+<o:Column Id="o978">
 <a:ObjectID>516956B6-8B66-4B7C-99BC-F7ECBC44A011</a:ObjectID>
 <a:Name>鏂囦欢绫诲瀷</a:Name>
 <a:Code>content_type</a:Code>
@@ -21244,7 +25771,7 @@
 <a:DataType>VARCHAR(10)</a:DataType>
 <a:Length>10</a:Length>
 </o:Column>
-<o:Column Id="o794">
+<o:Column Id="o979">
 <a:ObjectID>B1C546C9-8714-415A-9B85-0716176F7AC1</a:ObjectID>
 <a:Name>鏂囦欢鍚�</a:Name>
 <a:Code>file_name</a:Code>
@@ -21256,7 +25783,7 @@
 <a:DataType>VARCHAR(300)</a:DataType>
 <a:Length>300</a:Length>
 </o:Column>
-<o:Column Id="o795">
+<o:Column Id="o980">
 <a:ObjectID>E1B845A0-494B-4EF2-BB70-5079006F9CBB</a:ObjectID>
 <a:Name>鏂囦欢鍚庣紑</a:Name>
 <a:Code>file_suffix</a:Code>
@@ -21268,7 +25795,7 @@
 <a:DataType>VARCHAR(10)</a:DataType>
 <a:Length>10</a:Length>
 </o:Column>
-<o:Column Id="o796">
+<o:Column Id="o981">
 <a:ObjectID>A625AE0B-DF21-4F49-8930-F9AC453B28BD</a:ObjectID>
 <a:Name>鏂囦欢璺姴</a:Name>
 <a:Code>file_path</a:Code>
@@ -21280,7 +25807,7 @@
 <a:DataType>VARCHAR(300)</a:DataType>
 <a:Length>300</a:Length>
 </o:Column>
-<o:Column Id="o797">
+<o:Column Id="o982">
 <a:ObjectID>3F3C568C-AF8E-490F-8966-5547258F7806</a:ObjectID>
 <a:Name>鏂囦欢澶у皬</a:Name>
 <a:Code>file_size</a:Code>
@@ -21292,7 +25819,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o798">
+<o:Column Id="o983">
 <a:ObjectID>1995E6D6-36C5-426E-A97C-08AAAC9490C2</a:ObjectID>
 <a:Name>鏂囦欢澶у皬銆愬瓧鑺傘��</a:Name>
 <a:Code>business_type</a:Code>
@@ -21304,7 +25831,7 @@
 <a:DataType>INT2</a:DataType>
 <a:Length>2</a:Length>
 </o:Column>
-<o:Column Id="o799">
+<o:Column Id="o984">
 <a:ObjectID>046EEFBC-6B5F-4111-B236-574FD6799BB5</a:ObjectID>
 <a:Name>鎽樿</a:Name>
 <a:Code>summary</a:Code>
@@ -21316,7 +25843,7 @@
 <a:DataType>VARCHAR(300)</a:DataType>
 <a:Length>300</a:Length>
 </o:Column>
-<o:Column Id="o800">
+<o:Column Id="o985">
 <a:ObjectID>159AFE6A-7A06-4FF2-B989-2706378ECF02</a:ObjectID>
 <a:Name>澶囨敞</a:Name>
 <a:Code>remark</a:Code>
@@ -21330,7 +25857,7 @@
 </o:Column>
 </c:Columns>
 <c:Keys>
-<o:Key Id="o801">
+<o:Key Id="o986">
 <a:ObjectID>D512A021-7983-4A2C-9C9A-9F73095FF4D6</a:ObjectID>
 <a:Name>Key_1</a:Name>
 <a:Code>Key_1</a:Code>
@@ -21339,17 +25866,17 @@
 <a:ModificationDate>1697507298</a:ModificationDate>
 <a:Modifier>WYH</a:Modifier>
 <c:Key.Columns>
-<o:Column Ref="o789"/>
+<o:Column Ref="o974"/>
 </c:Key.Columns>
 </o:Key>
 </c:Keys>
 <c:PrimaryKey>
-<o:Key Ref="o801"/>
+<o:Key Ref="o986"/>
 </c:PrimaryKey>
 </o:Table>
 </c:Tables>
 </o:Package>
-<o:Package Id="o727">
+<o:Package Id="o912">
 <a:ObjectID>A7850739-542B-4F6F-B9EB-66EA75355C06</a:ObjectID>
 <a:Name>銆愮彮绾ц祫鏂欒缃�佸熀鍦扮彮绾ц祫鏂欏瓨妗f爣鍑嗐�佺彮绾ц祫鏂欑鐞嗐��</a:Name>
 <a:Code>銆愮彮绾ц祫鏂欒缃�佸熀鍦扮彮绾ц祫鏂欏瓨妗f爣鍑嗐�佺彮绾ц祫鏂欑鐞嗐��</a:Code>
@@ -21358,7 +25885,7 @@
 <a:ModificationDate>1697435310</a:ModificationDate>
 <a:Modifier>WYH</a:Modifier>
 <c:PhysicalDiagrams>
-<o:PhysicalDiagram Id="o802">
+<o:PhysicalDiagram Id="o987">
 <a:ObjectID>2E80413C-0E78-47E6-A0B9-78003BF55FB8</a:ObjectID>
 <a:Name>鐝骇璧勬枡璁剧疆銆佸熀鍦板瓨妗f爣鍑嗐�佺彮绾ц祫鏂欑鐞�</a:Name>
 <a:Code>鐝骇璧勬枡璁剧疆銆佸熀鍦板瓨妗f爣鍑嗐�佺彮绾ц祫鏂欑鐞�</a:Code>
@@ -21776,7 +26303,7 @@
 <a:PageOrientation>1</a:PageOrientation>
 <a:PaperSource>15</a:PaperSource>
 <c:Symbols>
-<o:ExtendedDependencySymbol Id="o803">
+<o:ExtendedDependencySymbol Id="o988">
 <a:CreationDate>1697435310</a:CreationDate>
 <a:ModificationDate>1697435310</a:ModificationDate>
 <a:Rect>((1227,-17416), (3477,8715))</a:Rect>
@@ -21786,16 +26313,16 @@
 <a:ShadowColor>12632256</a:ShadowColor>
 <a:FontList>OBJXSTR 0 Arial,8,N</a:FontList>
 <c:SourceSymbol>
-<o:TableSymbol Ref="o804"/>
+<o:TableSymbol Ref="o989"/>
 </c:SourceSymbol>
 <c:DestinationSymbol>
-<o:TableSymbol Ref="o805"/>
+<o:TableSymbol Ref="o990"/>
 </c:DestinationSymbol>
 <c:Object>
-<o:ExtendedDependency Ref="o806"/>
+<o:ExtendedDependency Ref="o991"/>
 </c:Object>
 </o:ExtendedDependencySymbol>
-<o:ExtendedDependencySymbol Id="o807">
+<o:ExtendedDependencySymbol Id="o992">
 <a:CreationDate>1697435310</a:CreationDate>
 <a:ModificationDate>1697435310</a:ModificationDate>
 <a:Rect>((-19306,26570), (2369,27920))</a:Rect>
@@ -21805,16 +26332,16 @@
 <a:ShadowColor>12632256</a:ShadowColor>
 <a:FontList>OBJXSTR 0 Arial,8,N</a:FontList>
 <c:SourceSymbol>
-<o:TableSymbol Ref="o808"/>
+<o:TableSymbol Ref="o993"/>
 </c:SourceSymbol>
 <c:DestinationSymbol>
-<o:TableSymbol Ref="o809"/>
+<o:TableSymbol Ref="o994"/>
 </c:DestinationSymbol>
 <c:Object>
-<o:ExtendedDependency Ref="o810"/>
+<o:ExtendedDependency Ref="o995"/>
 </c:Object>
 </o:ExtendedDependencySymbol>
-<o:NoteLinkSymbol Id="o811">
+<o:NoteLinkSymbol Id="o996">
 <a:CreationDate>1697435310</a:CreationDate>
 <a:ModificationDate>1697435310</a:ModificationDate>
 <a:Rect>((-8806,-25135), (7394,-23185))</a:Rect>
@@ -21825,13 +26352,13 @@
 <a:DashStyle>3</a:DashStyle>
 <a:ShadowColor>12632256</a:ShadowColor>
 <c:SourceSymbol>
-<o:TableSymbol Ref="o804"/>
+<o:TableSymbol Ref="o989"/>
 </c:SourceSymbol>
 <c:DestinationSymbol>
-<o:NoteSymbol Ref="o812"/>
+<o:NoteSymbol Ref="o997"/>
 </c:DestinationSymbol>
 </o:NoteLinkSymbol>
-<o:NoteSymbol Id="o812">
+<o:NoteSymbol Id="o997">
 <a:Text>鐝骇璧勬枡淇℃伅闄勪欢绠$悊銆恇ase_class_data_type_file_manage銆戞湭鏉ユ湁鍙兘闇�瑕佸垎琛�
 </a:Text>
 <a:CreationDate>1697435310</a:CreationDate>
@@ -21845,7 +26372,7 @@
 <a:FontName>Arial,16,N</a:FontName>
 <a:ManuallyResized>1</a:ManuallyResized>
 </o:NoteSymbol>
-<o:TableSymbol Id="o809">
+<o:TableSymbol Id="o994">
 <a:CreationDate>1697435310</a:CreationDate>
 <a:ModificationDate>1697435310</a:ModificationDate>
 <a:IconMode>-1</a:IconMode>
@@ -21869,10 +26396,10 @@
 <a:GradientEndColor>16777215</a:GradientEndColor>
 <a:ManuallyResized>1</a:ManuallyResized>
 <c:Object>
-<o:Table Ref="o813"/>
+<o:Table Ref="o998"/>
 </c:Object>
 </o:TableSymbol>
-<o:TableSymbol Id="o808">
+<o:TableSymbol Id="o993">
 <a:CreationDate>1697435310</a:CreationDate>
 <a:ModificationDate>1697435310</a:ModificationDate>
 <a:IconMode>-1</a:IconMode>
@@ -21896,10 +26423,10 @@
 <a:GradientEndColor>16777215</a:GradientEndColor>
 <a:ManuallyResized>1</a:ManuallyResized>
 <c:Object>
-<o:Table Ref="o814"/>
+<o:Table Ref="o999"/>
 </c:Object>
 </o:TableSymbol>
-<o:TableSymbol Id="o805">
+<o:TableSymbol Id="o990">
 <a:CreationDate>1697435310</a:CreationDate>
 <a:ModificationDate>1697435310</a:ModificationDate>
 <a:IconMode>-1</a:IconMode>
@@ -21923,10 +26450,10 @@
 <a:GradientEndColor>16777215</a:GradientEndColor>
 <a:ManuallyResized>1</a:ManuallyResized>
 <c:Object>
-<o:Table Ref="o815"/>
+<o:Table Ref="o1000"/>
 </c:Object>
 </o:TableSymbol>
-<o:TableSymbol Id="o804">
+<o:TableSymbol Id="o989">
 <a:CreationDate>1697435310</a:CreationDate>
 <a:ModificationDate>1697435310</a:ModificationDate>
 <a:IconMode>-1</a:IconMode>
@@ -21960,17 +26487,17 @@
 Table.Triggers 0 0 &quot;&quot; &quot;&quot; Stereotype
 Table.Comment 0</a:SymbolContent>
 <c:Object>
-<o:Table Ref="o816"/>
+<o:Table Ref="o1001"/>
 </c:Object>
 </o:TableSymbol>
 </c:Symbols>
 </o:PhysicalDiagram>
 </c:PhysicalDiagrams>
 <c:DefaultDiagram>
-<o:PhysicalDiagram Ref="o802"/>
+<o:PhysicalDiagram Ref="o987"/>
 </c:DefaultDiagram>
 <c:Tables>
-<o:Table Id="o813">
+<o:Table Id="o998">
 <a:ObjectID>3B112562-4CBE-4F92-831C-75E4BDEBAF48</a:ObjectID>
 <a:Name>鐝骇璧勬枡绫诲瀷绠$悊銆恇ase_class_data_type銆�</a:Name>
 <a:Code>base_class_data_type</a:Code>
@@ -21981,7 +26508,7 @@
 <a:Comment>鐝骇璧勬枡绫诲瀷绠$悊銆恇ase_class_data_type銆�</a:Comment>
 <a:TotalSavingCurrency/>
 <c:Columns>
-<o:Column Id="o817">
+<o:Column Id="o1002">
 <a:ObjectID>E33BE040-B6F8-45CC-8868-C904FBF328B8</a:ObjectID>
 <a:Name>ID</a:Name>
 <a:Code>id</a:Code>
@@ -21994,7 +26521,7 @@
 <a:Length>32</a:Length>
 <a:Mandatory>1</a:Mandatory>
 </o:Column>
-<o:Column Id="o818">
+<o:Column Id="o1003">
 <a:ObjectID>3F768A8E-F9D8-4CD6-AD26-C8794CB48188</a:ObjectID>
 <a:Name>璧勬枡鍚嶇О</a:Name>
 <a:Code>data_type_name</a:Code>
@@ -22006,7 +26533,7 @@
 <a:DataType>VARCHAR(50)</a:DataType>
 <a:Length>50</a:Length>
 </o:Column>
-<o:Column Id="o819">
+<o:Column Id="o1004">
 <a:ObjectID>F3DC94D2-36B7-4F48-93D9-F94ACDFB73B9</a:ObjectID>
 <a:Name>鏄惁鍏ㄧ綉鍙傛暟銆�1锛氭槸銆�0锛氬惁銆�</a:Name>
 <a:Code>is_default</a:Code>
@@ -22018,7 +26545,7 @@
 <a:DataType>INT2</a:DataType>
 <a:Length>2</a:Length>
 </o:Column>
-<o:Column Id="o820">
+<o:Column Id="o1005">
 <a:ObjectID>5F219BA5-3074-4321-B1DD-B7DE36B9085B</a:ObjectID>
 <a:Name>鐘舵�併��0锛氬惎鐢ㄣ��1锛氱鐢ㄣ��2锛氬垹闄ゃ��</a:Name>
 <a:Code>status</a:Code>
@@ -22030,7 +26557,7 @@
 <a:DataType>INT2</a:DataType>
 <a:Length>2</a:Length>
 </o:Column>
-<o:Column Id="o821">
+<o:Column Id="o1006">
 <a:ObjectID>1B6EABF1-DF96-43A7-9460-C93BF9E61EDF</a:ObjectID>
 <a:Name>椤哄簭鍙�</a:Name>
 <a:Code>order_num</a:Code>
@@ -22042,7 +26569,7 @@
 <a:DataType>INT2</a:DataType>
 <a:Length>2</a:Length>
 </o:Column>
-<o:Column Id="o822">
+<o:Column Id="o1007">
 <a:ObjectID>65E6856E-F7FF-4474-9EE7-0ED5B4C12944</a:ObjectID>
 <a:Name>鎵�灞炲熀鍦癷d</a:Name>
 <a:Code>base_id</a:Code>
@@ -22054,7 +26581,7 @@
 <a:DataType>VARCHAR(32)</a:DataType>
 <a:Length>32</a:Length>
 </o:Column>
-<o:Column Id="o823">
+<o:Column Id="o1008">
 <a:ObjectID>D7778DC0-70D6-4D6B-ABBC-7246AC9F9A0C</a:ObjectID>
 <a:Name>鍩哄湴鍚嶇О</a:Name>
 <a:Code>base_name</a:Code>
@@ -22066,7 +26593,7 @@
 <a:DataType>VARCHAR(50)</a:DataType>
 <a:Length>50</a:Length>
 </o:Column>
-<o:Column Id="o824">
+<o:Column Id="o1009">
 <a:ObjectID>96169D88-FE4B-4802-82E3-87E57741063E</a:ObjectID>
 <a:Name>鍒涘缓浜�</a:Name>
 <a:Code>create_user_id</a:Code>
@@ -22078,7 +26605,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o825">
+<o:Column Id="o1010">
 <a:ObjectID>6E268FAD-5118-4DC4-9960-B6BD1B4B9F55</a:ObjectID>
 <a:Name>鍒涘缓浜哄悕绉�</a:Name>
 <a:Code>create_user_name</a:Code>
@@ -22090,7 +26617,7 @@
 <a:DataType>VARCHAR(50)</a:DataType>
 <a:Length>50</a:Length>
 </o:Column>
-<o:Column Id="o826">
+<o:Column Id="o1011">
 <a:ObjectID>B8FEEE47-04D1-4918-9415-CFD782B037DA</a:ObjectID>
 <a:Name>鍒涘缓鏃堕棿</a:Name>
 <a:Code>create_time</a:Code>
@@ -22102,7 +26629,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o827">
+<o:Column Id="o1012">
 <a:ObjectID>900A7D1C-5058-4159-966C-A10EF6A984CB</a:ObjectID>
 <a:Name>鏇存柊浜�</a:Name>
 <a:Code>update_user_id</a:Code>
@@ -22114,7 +26641,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o828">
+<o:Column Id="o1013">
 <a:ObjectID>E8F6363E-EA6D-454D-9176-85AEDA50247A</a:ObjectID>
 <a:Name>鏇存柊浜哄悕绉�</a:Name>
 <a:Code>update_user_name</a:Code>
@@ -22126,7 +26653,7 @@
 <a:DataType>VARCHAR(50)</a:DataType>
 <a:Length>50</a:Length>
 </o:Column>
-<o:Column Id="o829">
+<o:Column Id="o1014">
 <a:ObjectID>A4E56E5C-B7CE-4593-ABD3-AA7668D06C13</a:ObjectID>
 <a:Name>鏇存柊鏃堕棿</a:Name>
 <a:Code>update_time</a:Code>
@@ -22140,7 +26667,7 @@
 </o:Column>
 </c:Columns>
 <c:Keys>
-<o:Key Id="o830">
+<o:Key Id="o1015">
 <a:ObjectID>FA076B77-E69B-484F-97C2-E243D0BF1DAB</a:ObjectID>
 <a:Name>Key_1</a:Name>
 <a:Code>Key_1</a:Code>
@@ -22149,15 +26676,15 @@
 <a:ModificationDate>1697435310</a:ModificationDate>
 <a:Modifier>WYH</a:Modifier>
 <c:Key.Columns>
-<o:Column Ref="o817"/>
+<o:Column Ref="o1002"/>
 </c:Key.Columns>
 </o:Key>
 </c:Keys>
 <c:PrimaryKey>
-<o:Key Ref="o830"/>
+<o:Key Ref="o1015"/>
 </c:PrimaryKey>
 </o:Table>
-<o:Table Id="o814">
+<o:Table Id="o999">
 <a:ObjectID>A3E6AE68-60B5-45BF-9E55-409FF0C6A68D</a:ObjectID>
 <a:Name>鐝骇璧勬枡瀛樻。鏍囧噯銆恇ase_class_data_type_standard銆�</a:Name>
 <a:Code>base_class_data_type_standard</a:Code>
@@ -22168,7 +26695,7 @@
 <a:Comment>鐝骇璧勬枡瀛樻。鏍囧噯銆恇ase_class_data_type_standard銆�</a:Comment>
 <a:TotalSavingCurrency/>
 <c:Columns>
-<o:Column Id="o831">
+<o:Column Id="o1016">
 <a:ObjectID>4C12E8CF-6FA9-47D9-ACE8-22D8500FB47A</a:ObjectID>
 <a:Name>ID</a:Name>
 <a:Code>id</a:Code>
@@ -22181,7 +26708,7 @@
 <a:Length>32</a:Length>
 <a:Mandatory>1</a:Mandatory>
 </o:Column>
-<o:Column Id="o832">
+<o:Column Id="o1017">
 <a:ObjectID>B33222C8-79AA-49C5-BBAA-1ACBABF2CEFA</a:ObjectID>
 <a:Name>鐝骇璧勬枡绫诲瀷绠$悊銆恇ase_class_data_type銆�</a:Name>
 <a:Code>data_type_id</a:Code>
@@ -22193,7 +26720,7 @@
 <a:DataType>VARCHAR(32)</a:DataType>
 <a:Length>32</a:Length>
 </o:Column>
-<o:Column Id="o833">
+<o:Column Id="o1018">
 <a:ObjectID>A5193905-2E0E-4CD8-9E1C-5E29EAC49AA4</a:ObjectID>
 <a:Name>鐘舵�併��0锛氬惎鐢ㄣ��1锛氱鐢ㄣ��</a:Name>
 <a:Code>status</a:Code>
@@ -22205,7 +26732,7 @@
 <a:DataType>INT2</a:DataType>
 <a:Length>2</a:Length>
 </o:Column>
-<o:Column Id="o834">
+<o:Column Id="o1019">
 <a:ObjectID>2D7C964C-F3BB-4EB9-973C-445100D06C83</a:ObjectID>
 <a:Name>鎵�灞炲熀鍦癷d</a:Name>
 <a:Code>base_id</a:Code>
@@ -22217,7 +26744,7 @@
 <a:DataType>VARCHAR(32)</a:DataType>
 <a:Length>32</a:Length>
 </o:Column>
-<o:Column Id="o835">
+<o:Column Id="o1020">
 <a:ObjectID>83C19013-A37F-4AC0-AA8D-32F37D8B0EC4</a:ObjectID>
 <a:Name>鎵�灞炲熀鍦板悕绉�</a:Name>
 <a:Code>base_name</a:Code>
@@ -22229,7 +26756,7 @@
 <a:DataType>VARCHAR(50)</a:DataType>
 <a:Length>50</a:Length>
 </o:Column>
-<o:Column Id="o836">
+<o:Column Id="o1021">
 <a:ObjectID>679C75D1-3720-4C53-B1E8-0A71EB8E015F</a:ObjectID>
 <a:Name>鍒涘缓浜�</a:Name>
 <a:Code>create_user_id</a:Code>
@@ -22241,7 +26768,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o837">
+<o:Column Id="o1022">
 <a:ObjectID>4D2F7073-6E03-4FDE-9A4F-0DFCB134388D</a:ObjectID>
 <a:Name>鍒涘缓浜哄悕绉�</a:Name>
 <a:Code>create_user_name</a:Code>
@@ -22253,7 +26780,7 @@
 <a:DataType>VARCHAR(50)</a:DataType>
 <a:Length>50</a:Length>
 </o:Column>
-<o:Column Id="o838">
+<o:Column Id="o1023">
 <a:ObjectID>38DEAA72-70D2-4E55-B39B-EA11495B52D4</a:ObjectID>
 <a:Name>鍒涘缓鏃堕棿</a:Name>
 <a:Code>create_time</a:Code>
@@ -22265,7 +26792,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o839">
+<o:Column Id="o1024">
 <a:ObjectID>B04AA9C1-D4D1-4108-B5E2-BB53E27921E5</a:ObjectID>
 <a:Name>鏇存柊浜�</a:Name>
 <a:Code>update_user_id</a:Code>
@@ -22277,7 +26804,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o840">
+<o:Column Id="o1025">
 <a:ObjectID>466AB5BE-4438-4E59-9638-636EE95E8109</a:ObjectID>
 <a:Name>鏇存柊浜哄悕绉�</a:Name>
 <a:Code>update_user_name</a:Code>
@@ -22289,7 +26816,7 @@
 <a:DataType>VARCHAR(50)</a:DataType>
 <a:Length>50</a:Length>
 </o:Column>
-<o:Column Id="o841">
+<o:Column Id="o1026">
 <a:ObjectID>2EE630F9-E48D-4E48-A304-8709F225F59A</a:ObjectID>
 <a:Name>鏇存柊鏃堕棿</a:Name>
 <a:Code>update_time</a:Code>
@@ -22303,7 +26830,7 @@
 </o:Column>
 </c:Columns>
 <c:Keys>
-<o:Key Id="o842">
+<o:Key Id="o1027">
 <a:ObjectID>667EC8A1-3408-46F8-869A-7D7F977CB968</a:ObjectID>
 <a:Name>Key_1</a:Name>
 <a:Code>Key_1</a:Code>
@@ -22312,15 +26839,15 @@
 <a:ModificationDate>1697435310</a:ModificationDate>
 <a:Modifier>WYH</a:Modifier>
 <c:Key.Columns>
-<o:Column Ref="o831"/>
+<o:Column Ref="o1016"/>
 </c:Key.Columns>
 </o:Key>
 </c:Keys>
 <c:PrimaryKey>
-<o:Key Ref="o842"/>
+<o:Key Ref="o1027"/>
 </c:PrimaryKey>
 </o:Table>
-<o:Table Id="o815">
+<o:Table Id="o1000">
 <a:ObjectID>86CB914A-F2E6-48BE-9768-995AE024F6D6</a:ObjectID>
 <a:Name>鐝骇璧勬枡淇℃伅绠$悊銆恇ase_class_data_type_profile_manage銆�</a:Name>
 <a:Code>base_class_data_type_manage</a:Code>
@@ -22331,7 +26858,7 @@
 <a:Comment>鐝骇璧勬枡淇℃伅绠$悊銆恇ase_class_data_type_manage銆�</a:Comment>
 <a:TotalSavingCurrency/>
 <c:Columns>
-<o:Column Id="o843">
+<o:Column Id="o1028">
 <a:ObjectID>9C153D09-FC6A-4240-8F96-953284483CDE</a:ObjectID>
 <a:Name>ID</a:Name>
 <a:Code>id</a:Code>
@@ -22344,7 +26871,7 @@
 <a:Length>32</a:Length>
 <a:Mandatory>1</a:Mandatory>
 </o:Column>
-<o:Column Id="o844">
+<o:Column Id="o1029">
 <a:ObjectID>FFE42BC3-535F-453B-BA9C-AFE3A4E75CB2</a:ObjectID>
 <a:Name>璧勬枡鍚�</a:Name>
 <a:Code>profile_name</a:Code>
@@ -22356,7 +26883,7 @@
 <a:DataType>VARCHAR(100)</a:DataType>
 <a:Length>100</a:Length>
 </o:Column>
-<o:Column Id="o845">
+<o:Column Id="o1030">
 <a:ObjectID>74B8FFFC-BC6A-4D13-B0D8-5F15F80599E2</a:ObjectID>
 <a:Name>鐝骇璧勬枡绫诲瀷绠$悊銆恇ase_class_data_type銆�</a:Name>
 <a:Code>data_type_id</a:Code>
@@ -22368,7 +26895,7 @@
 <a:DataType>VARCHAR(50)</a:DataType>
 <a:Length>50</a:Length>
 </o:Column>
-<o:Column Id="o846">
+<o:Column Id="o1031">
 <a:ObjectID>63A17383-5BE1-43BE-BDFF-71DA8A481167</a:ObjectID>
 <a:Name>鐝骇id</a:Name>
 <a:Code>class_info_id</a:Code>
@@ -22380,7 +26907,7 @@
 <a:DataType>VARCHAR(32)</a:DataType>
 <a:Length>32</a:Length>
 </o:Column>
-<o:Column Id="o847">
+<o:Column Id="o1032">
 <a:ObjectID>B7BC48AA-B1B5-4C29-B78C-DA6D1A719D87</a:ObjectID>
 <a:Name>鐘舵�併��0锛氬惎鐢ㄣ��1锛氱鐢ㄣ��2锛氬垹闄ゃ��</a:Name>
 <a:Code>status</a:Code>
@@ -22392,7 +26919,7 @@
 <a:DataType>INT2</a:DataType>
 <a:Length>2</a:Length>
 </o:Column>
-<o:Column Id="o848">
+<o:Column Id="o1033">
 <a:ObjectID>C5A61F24-0660-4C6A-ACE1-B60F937C2AFA</a:ObjectID>
 <a:Name>鎵�灞炲熀鍦癷d</a:Name>
 <a:Code>base_id</a:Code>
@@ -22404,7 +26931,7 @@
 <a:DataType>VARCHAR(32)</a:DataType>
 <a:Length>32</a:Length>
 </o:Column>
-<o:Column Id="o849">
+<o:Column Id="o1034">
 <a:ObjectID>DF98430A-A15A-4E72-A0C8-6B088064E5BE</a:ObjectID>
 <a:Name>鎵�灞炲熀鍦板悕绉�</a:Name>
 <a:Code>base_name</a:Code>
@@ -22416,7 +26943,7 @@
 <a:DataType>VARCHAR(50)</a:DataType>
 <a:Length>50</a:Length>
 </o:Column>
-<o:Column Id="o850">
+<o:Column Id="o1035">
 <a:ObjectID>6351C6D0-52E9-4462-85DD-0845EFB6D41A</a:ObjectID>
 <a:Name>椤哄簭鍙�</a:Name>
 <a:Code>order_num</a:Code>
@@ -22428,7 +26955,7 @@
 <a:DataType>INT2</a:DataType>
 <a:Length>2</a:Length>
 </o:Column>
-<o:Column Id="o851">
+<o:Column Id="o1036">
 <a:ObjectID>89AB9FEF-CBD3-4BB5-9958-4BF748C1E29F</a:ObjectID>
 <a:Name>鏌ラ槄鏉冮檺銆�1锛氬紑鏀俱��2锛氬唴閮ㄣ��</a:Name>
 <a:Code>profile_permissions</a:Code>
@@ -22440,7 +26967,7 @@
 <a:DataType>INT2</a:DataType>
 <a:Length>2</a:Length>
 </o:Column>
-<o:Column Id="o852">
+<o:Column Id="o1037">
 <a:ObjectID>2FA63AD0-BF13-4033-B224-56C561E6F97C</a:ObjectID>
 <a:Name>鍏宠仈璇剧▼id</a:Name>
 <a:Code>course_id</a:Code>
@@ -22452,7 +26979,7 @@
 <a:DataType>VARCHAR(32)</a:DataType>
 <a:Length>32</a:Length>
 </o:Column>
-<o:Column Id="o853">
+<o:Column Id="o1038">
 <a:ObjectID>07F8ACB9-229D-4D90-9BC2-94D548ADB766</a:ObjectID>
 <a:Name>鍒涘缓浜�</a:Name>
 <a:Code>create_user_id</a:Code>
@@ -22464,7 +26991,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o854">
+<o:Column Id="o1039">
 <a:ObjectID>970DF505-B2EE-46E0-8C11-501524BF567D</a:ObjectID>
 <a:Name>鍒涘缓浜哄悕绉�</a:Name>
 <a:Code>create_user_name</a:Code>
@@ -22476,7 +27003,7 @@
 <a:DataType>VARCHAR(50)</a:DataType>
 <a:Length>50</a:Length>
 </o:Column>
-<o:Column Id="o855">
+<o:Column Id="o1040">
 <a:ObjectID>0C43D043-7847-4CD9-89C9-6125D325FBC9</a:ObjectID>
 <a:Name>鍒涘缓鏃堕棿</a:Name>
 <a:Code>create_time</a:Code>
@@ -22488,7 +27015,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o856">
+<o:Column Id="o1041">
 <a:ObjectID>878294FE-96B5-44AD-9369-13E3F8ADC028</a:ObjectID>
 <a:Name>鏇存柊浜�</a:Name>
 <a:Code>update_user_id</a:Code>
@@ -22500,7 +27027,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o857">
+<o:Column Id="o1042">
 <a:ObjectID>5A896A98-2C58-4096-AF92-E362E8CB22C4</a:ObjectID>
 <a:Name>鏇存柊浜哄悕绉�</a:Name>
 <a:Code>update_user_name</a:Code>
@@ -22512,7 +27039,7 @@
 <a:DataType>VARCHAR(50)</a:DataType>
 <a:Length>50</a:Length>
 </o:Column>
-<o:Column Id="o858">
+<o:Column Id="o1043">
 <a:ObjectID>79F6D14D-DFB0-469A-85B9-8F68A9718F53</a:ObjectID>
 <a:Name>鏇存柊鏃堕棿</a:Name>
 <a:Code>update_time</a:Code>
@@ -22526,7 +27053,7 @@
 </o:Column>
 </c:Columns>
 <c:Keys>
-<o:Key Id="o859">
+<o:Key Id="o1044">
 <a:ObjectID>33F33A9F-C12B-4A9B-93EE-54EDF4B92C12</a:ObjectID>
 <a:Name>Key_1</a:Name>
 <a:Code>Key_1</a:Code>
@@ -22535,15 +27062,15 @@
 <a:ModificationDate>1697435310</a:ModificationDate>
 <a:Modifier>WYH</a:Modifier>
 <c:Key.Columns>
-<o:Column Ref="o843"/>
+<o:Column Ref="o1028"/>
 </c:Key.Columns>
 </o:Key>
 </c:Keys>
 <c:PrimaryKey>
-<o:Key Ref="o859"/>
+<o:Key Ref="o1044"/>
 </c:PrimaryKey>
 </o:Table>
-<o:Table Id="o816">
+<o:Table Id="o1001">
 <a:ObjectID>A3CBBE21-94E0-4640-9BF8-6949690FECDB</a:ObjectID>
 <a:Name>鐝骇璧勬枡淇℃伅闄勪欢绠$悊銆恇ase_class_data_type_file_manage銆�</a:Name>
 <a:Code>base_class_data_type_file_manage</a:Code>
@@ -22554,7 +27081,7 @@
 <a:Comment>鐝骇璧勬枡淇℃伅闄勪欢绠$悊銆恇ase_class_data_type_file_manage銆�</a:Comment>
 <a:TotalSavingCurrency/>
 <c:Columns>
-<o:Column Id="o860">
+<o:Column Id="o1045">
 <a:ObjectID>1D2C0B58-3404-42BB-BDA2-DEC7252FC141</a:ObjectID>
 <a:Name>浣跨敤鐝骇璧勬枡淇℃伅id,鎵╁睍琛�</a:Name>
 <a:Code>id</a:Code>
@@ -22567,7 +27094,7 @@
 <a:Length>32</a:Length>
 <a:Mandatory>1</a:Mandatory>
 </o:Column>
-<o:Column Id="o861">
+<o:Column Id="o1046">
 <a:ObjectID>8A0BA6D2-C0D0-4298-9B75-408A38188E5C</a:ObjectID>
 <a:Name>鏂囦欢</a:Name>
 <a:Code>file</a:Code>
@@ -22581,7 +27108,7 @@
 </o:Column>
 </c:Columns>
 <c:Keys>
-<o:Key Id="o862">
+<o:Key Id="o1047">
 <a:ObjectID>07F45623-DFEA-4539-88C3-198BFFA3273B</a:ObjectID>
 <a:Name>Key_1</a:Name>
 <a:Code>Key_1</a:Code>
@@ -22590,54 +27117,471 @@
 <a:ModificationDate>1697435310</a:ModificationDate>
 <a:Modifier>WYH</a:Modifier>
 <c:Key.Columns>
-<o:Column Ref="o860"/>
+<o:Column Ref="o1045"/>
 </c:Key.Columns>
 </o:Key>
 </c:Keys>
 <c:PrimaryKey>
-<o:Key Ref="o862"/>
+<o:Key Ref="o1047"/>
 </c:PrimaryKey>
 </o:Table>
 </c:Tables>
 <c:ChildExtendedDependencies>
-<o:ExtendedDependency Id="o806">
+<o:ExtendedDependency Id="o991">
 <a:ObjectID>A74ECA8E-DB39-4818-B62D-B35C6378D0D8</a:ObjectID>
 <a:CreationDate>1697435310</a:CreationDate>
 <a:Creator>WYH</a:Creator>
 <a:ModificationDate>1697435310</a:ModificationDate>
 <a:Modifier>WYH</a:Modifier>
 <c:Object1>
-<o:Table Ref="o815"/>
+<o:Table Ref="o1000"/>
 </c:Object1>
 <c:Object2>
-<o:Table Ref="o816"/>
+<o:Table Ref="o1001"/>
 </c:Object2>
 </o:ExtendedDependency>
-<o:ExtendedDependency Id="o810">
+<o:ExtendedDependency Id="o995">
 <a:ObjectID>42CBCC85-6719-472F-A709-97410E83158F</a:ObjectID>
 <a:CreationDate>1697435310</a:CreationDate>
 <a:Creator>WYH</a:Creator>
 <a:ModificationDate>1697435310</a:ModificationDate>
 <a:Modifier>WYH</a:Modifier>
 <c:Object1>
-<o:Table Ref="o813"/>
+<o:Table Ref="o998"/>
 </c:Object1>
 <c:Object2>
-<o:Table Ref="o814"/>
+<o:Table Ref="o999"/>
 </c:Object2>
 </o:ExtendedDependency>
 </c:ChildExtendedDependencies>
 </o:Package>
-<o:Package Id="o729">
+<o:Package Id="o914">
 <a:ObjectID>2BE5F170-CDC6-4233-B7FD-0A632B80A9B5</a:ObjectID>
 <a:Name>銆愭暀瀛﹁瘎浼版ā鏉裤�佸熀鍦拌瘎浼伴厤缃�佺彮绾ц祫鏂欑鐞嗐�佸鍛樿瘎浠蜂俊鎭��</a:Name>
 <a:Code>銆愭暀瀛﹁瘎浼版ā鏉裤�佸熀鍦拌瘎浼伴厤缃�佺彮绾ц祫鏂欑鐞嗐�佸鍛樿瘎浠蜂俊鎭��</a:Code>
 <a:CreationDate>1697435570</a:CreationDate>
 <a:Creator>WYH</a:Creator>
-<a:ModificationDate>1697461786</a:ModificationDate>
+<a:ModificationDate>1697626346</a:ModificationDate>
 <a:Modifier>WYH</a:Modifier>
+<a:PackageOptionsText>[FolderOptions]
+
+[FolderOptions\Physical Objects]
+GenerationCheckModel=Yes
+GenerationPath=
+GenerationOptions=
+GenerationTasks=
+GenerationTargets=
+GenerationSelections=
+RevPkey=Yes
+RevFkey=Yes
+RevAkey=Yes
+RevCheck=Yes
+RevIndx=Yes
+RevOpts=Yes
+RevViewAsTabl=No
+RevViewOpts=Yes
+RevSystAsTabl=Yes
+RevTablPerm=No
+RevViewPerm=No
+RevProcPerm=No
+RevDbpkPerm=No
+RevSqncPerm=No
+RevAdtPerm=No
+RevUserPriv=No
+RevUserOpts=No
+RevGrpePriv=No
+RevRolePriv=No
+RevDtbsOpts=Yes
+RevDtbsPerm=No
+RevViewIndx=Yes
+RevJidxOpts=Yes
+RevStats=No
+RevTspcPerm=No
+RevCaseSensitive=No
+GenTrgrStdMsg=Yes
+GenTrgrMsgTab=
+GenTrgrMsgNo=
+GenTrgrMsgTxt=
+TrgrPreserve=No
+TrgrIns=Yes
+TrgrUpd=Yes
+TrgrDel=Yes
+TrgrC2Ins=Yes
+TrgrC2Upd=Yes
+TrgrC3=Yes
+TrgrC4=Yes
+TrgrC5=Yes
+TrgrC6=Yes
+TrgrC7=Yes
+TrgrC8=Yes
+TrgrC9=Yes
+TrgrC10=Yes
+TrgrC11=Yes
+TrgrC1=Yes
+TrgrC12Ins=Yes
+TrgrC12Upd=Yes
+TrgrC13=Yes
+UpdateTableStatistics=Yes
+UpdateColumnStatistics=Yes
+
+[FolderOptions\Physical Objects\Database Generation]
+GenScriptName=crebas.sql
+GenScriptName0=crebas.sql
+GenScriptName1=
+GenScriptName2=
+GenScriptName3=
+GenScriptName4=
+GenScriptName5=
+GenScriptName6=
+GenScriptName7=
+GenScriptName8=
+GenScriptName9=
+GenPathName=C:\Users\Administrator\Desktop\
+GenSingleFile=Yes
+GenODBC=No
+GenCheckModel=Yes
+GenScriptPrev=Yes
+GenArchiveModel=No
+GenUseSync=No
+GenSyncChoice=0
+GenSyncArch=
+GenSyncRmg=0
+
+[FolderOptions\Physical Objects\Database Generation\Format]
+GenScriptTitle=Yes
+GenScriptNamLabl=No
+GenScriptQDtbs=Yes
+GenScriptQOwnr=Yes
+GenScriptCase=0
+GenScriptEncoding=ANSI
+GenScriptNAcct=No
+IdentifierDelimiter=&quot;
+
+[FolderOptions\Physical Objects\Database Generation\Database]
+Create=Yes
+Open=Yes
+Close=Yes
+Drop=Yes
+Permission=No
+
+[FolderOptions\Physical Objects\Database Generation\Database\Create]
+Physical Options=Yes
+Header=Yes
+Footer=Yes
+
+[FolderOptions\Physical Objects\Database Generation\Tablespace]
+Create=Yes
+Drop=Yes
+Comment=Yes
+Permission=No
+
+[FolderOptions\Physical Objects\Database Generation\Tablespace\Create]
+Header=Yes
+Footer=Yes
+
+[FolderOptions\Physical Objects\Database Generation\Storage]
+Create=Yes
+Drop=Yes
+Comment=Yes
+
+[FolderOptions\Physical Objects\Database Generation\User]
+Create=Yes
+Grant=Yes
+Drop=Yes
+Comment=Yes
+Privilege=No
+
+[FolderOptions\Physical Objects\Database Generation\User\Create]
+Physical Options=No
+
+[FolderOptions\Physical Objects\Database Generation\Group]
+Create=Yes
+Drop=Yes
+Comment=Yes
+Privilege=No
+
+[FolderOptions\Physical Objects\Database Generation\Role]
+Create=Yes
+Drop=Yes
+Privilege=No
+
+[FolderOptions\Physical Objects\Database Generation\UserDefinedDataType]
+Create=Yes
+Comment=Yes
+Drop=Yes
+
+[FolderOptions\Physical Objects\Database Generation\UserDefinedDataType\Create]
+Default value=Yes
+Check=Yes
+
+[FolderOptions\Physical Objects\Database Generation\AbstractDataType]
+Create=Yes
+Header=Yes
+Footer=Yes
+Drop=Yes
+Comment=Yes
+Install JAVA class=Yes
+Remove JAVA class=Yes
+Permission=No
+
+[FolderOptions\Physical Objects\Database Generation\Rule]
+Create=Yes
+Drop=Yes
+Comment=Yes
+
+[FolderOptions\Physical Objects\Database Generation\Default]
+Create=Yes
+Comment=Yes
+Drop=Yes
+
+[FolderOptions\Physical Objects\Database Generation\Sequence]
+Create=Yes
+Drop=Yes
+Comment=Yes
+Permission=No
+
+[FolderOptions\Physical Objects\Database Generation\Table&amp;&amp;Column]
+
+[FolderOptions\Physical Objects\Database Generation\Table&amp;&amp;Column\Table]
+Create=Yes
+Drop=Yes
+Comment=Yes
+Permission=No
+
+[FolderOptions\Physical Objects\Database Generation\Table&amp;&amp;Column\Table\Create]
+Check=Yes
+Physical Options=Yes
+Header=Yes
+Footer=Yes
+
+[FolderOptions\Physical Objects\Database Generation\Table&amp;&amp;Column\Table\Create\Check]
+Constraint declaration=No
+
+[FolderOptions\Physical Objects\Database Generation\Table&amp;&amp;Column\Column]
+User datatype=Yes
+Default value=Yes
+Check=Yes
+Physical Options=Yes
+Comment=Yes
+
+[FolderOptions\Physical Objects\Database Generation\Table&amp;&amp;Column\Column\Check]
+Constraint declaration=No
+
+[FolderOptions\Physical Objects\Database Generation\Table&amp;&amp;Column\Key]
+
+[FolderOptions\Physical Objects\Database Generation\Table&amp;&amp;Column\Key\Primary key]
+Create=Yes
+Drop=Yes
+Comment=Yes
+
+[FolderOptions\Physical Objects\Database Generation\Table&amp;&amp;Column\Key\Primary key\Create]
+Constraint declaration=No
+Physical Options=Yes
+
+[FolderOptions\Physical Objects\Database Generation\Table&amp;&amp;Column\Key\Alternate key]
+Create=Yes
+Drop=Yes
+Comment=Yes
+
+[FolderOptions\Physical Objects\Database Generation\Table&amp;&amp;Column\Key\Alternate key\Create]
+Constraint declaration=No
+Physical Options=Yes
+
+[FolderOptions\Physical Objects\Database Generation\Table&amp;&amp;Column\Foreign key]
+Create=Yes
+Drop=Yes
+Comment=Yes
+
+[FolderOptions\Physical Objects\Database Generation\Table&amp;&amp;Column\Foreign key\Create]
+Constraint declaration=Yes
+
+[FolderOptions\Physical Objects\Database Generation\Table&amp;&amp;Column\Index]
+Create=Yes
+Drop=Yes
+Comment=Yes
+
+[FolderOptions\Physical Objects\Database Generation\Table&amp;&amp;Column\Index\Create]
+Constraint declaration=Yes
+Physical Options=Yes
+
+[FolderOptions\Physical Objects\Database Generation\Table&amp;&amp;Column\Index\Filter]
+Primary key=Yes
+Foreign key=Yes
+Alternate key=Yes
+Cluster=Yes
+Other=Yes
+
+[FolderOptions\Physical Objects\Database Generation\Table&amp;&amp;Column\Trigger]
+Create=Yes
+Drop=Yes
+Comment=Yes
+
+[FolderOptions\Physical Objects\Database Generation\Table&amp;&amp;Column\Trigger\Filter]
+For insert=Yes
+For update=Yes
+For delete=Yes
+For other=Yes
+
+[FolderOptions\Physical Objects\Database Generation\View]
+Create=Yes
+Drop=Yes
+Comment=Yes
+Permission=No
+
+[FolderOptions\Physical Objects\Database Generation\View\Create]
+Force Column list=No
+Physical Options=Yes
+Header=Yes
+Footer=Yes
+
+[FolderOptions\Physical Objects\Database Generation\View\ViewColumn]
+Comment=Yes
+
+[FolderOptions\Physical Objects\Database Generation\View\ViewIndex]
+Create=Yes
+Drop=Yes
+Comment=Yes
+
+[FolderOptions\Physical Objects\Database Generation\View\ViewIndex\Create]
+Physical Options=Yes
+
+[FolderOptions\Physical Objects\Database Generation\View\ViewIndex\Filter]
+Cluster=Yes
+Other=Yes
+
+[FolderOptions\Physical Objects\Database Generation\View\Trigger]
+Create=Yes
+Drop=Yes
+Comment=Yes
+
+[FolderOptions\Physical Objects\Database Generation\View\Trigger\Filter]
+For insert=Yes
+For update=Yes
+For delete=Yes
+For other=Yes
+
+[FolderOptions\Physical Objects\Database Generation\DBMSTrigger]
+Create=Yes
+Drop=Yes
+Comment=Yes
+
+[FolderOptions\Physical Objects\Database Generation\Synonym]
+Create=Yes
+Drop=Yes
+
+[FolderOptions\Physical Objects\Database Generation\Synonym\Filter]
+Table=Yes
+View=Yes
+Proc=Yes
+Synonym=Yes
+Database Package=Yes
+Sequence=Yes
+
+[FolderOptions\Physical Objects\Database Generation\JoinIndex]
+Create=Yes
+Drop=Yes
+Comment=Yes
+
+[FolderOptions\Physical Objects\Database Generation\JoinIndex\Create]
+Physical Options=Yes
+Header=Yes
+Footer=Yes
+
+[FolderOptions\Physical Objects\Database Generation\Procedure]
+Create=Yes
+Drop=Yes
+Comment=Yes
+Permission=No
+
+[FolderOptions\Physical Objects\Database Generation\Procedure\Create]
+Header=Yes
+Footer=Yes
+
+[FolderOptions\Physical Objects\Database Generation\DatabasePackage]
+Create=Yes
+Drop=Yes
+Permission=No
+
+[FolderOptions\Physical Objects\Database Generation\WebService]
+Create=Yes
+Drop=Yes
+Comment=Yes
+
+[FolderOptions\Physical Objects\Database Generation\Dimension]
+Create=Yes
+Drop=Yes
+
+[FolderOptions\Physical Objects\Database Generation\Synchronization]
+GenBackupTabl=1
+GenKeepBackTabl=1
+GenTmpTablDrop=No
+GenKeepTablOpts=No
+
+[FolderOptions\Physical Objects\Test Data]
+GenDataPathName=
+GenDataSinglefile=Yes
+GenDataScriptName=testdata
+GenDataScriptName0=
+GenDataScriptName1=
+GenDataScriptName2=
+GenDataScriptName3=
+GenDataScriptName4=
+GenDataScriptName5=
+GenDataScriptName6=
+GenDataScriptName7=
+GenDataScriptName8=
+GenDataScriptName9=
+GenDataOdbc=0
+GenDataDelOld=No
+GenDataTitle=No
+GenDataDefNumRows=20
+GenDataCommit=0
+GenDataPacket=0
+GenDataOwner=No
+GenDataProfNumb=
+GenDataProfChar=
+GenDataProfDate=
+GenDataCSVSeparator=,
+GenDataFileFormat=CSV
+GenDataUseWizard=No
+
+[FolderOptions\Pdm]
+IndxIQName=%COLUMN%_%INDEXTYPE%
+IndxPK=Yes
+IndxFK=Yes
+IndxAK=Yes
+IndxPKName=%TABLE%_PK
+IndxFKName=%REFR%_FK
+IndxAKName=%AKEY%_AK
+IndxPreserve=No
+IndxThreshold=0
+IndxStats=No
+RefrPreserve=No
+JidxPreserve=No
+RbldMultiFact=Yes
+RbldMultiDim=Yes
+RbldMultiJidx=Yes
+CubePreserve=No
+TablStProcPreserve=No
+ProcDepPreserve=Yes
+TrgrDepPreserve=Yes
+CubeScriptPath=
+CubeScriptCase=0
+CubeScriptEncoding=ANSI
+CubeScriptNacct=No
+CubeScriptHeader=No
+CubeScriptExt=csv
+CubeScriptExt0=txt
+CubeScriptExt1=
+CubeScriptExt2=
+CubeScriptSep=,
+CubeScriptDeli=&quot;
+DfltDomnName=D_%.U:VALUE%
+DfltColnName=D_%.U:VALUE%
+DfltReuse=Yes
+DfltDrop=Yes</a:PackageOptionsText>
 <c:PhysicalDiagrams>
-<o:PhysicalDiagram Id="o863">
+<o:PhysicalDiagram Id="o1048">
 <a:ObjectID>5D807E01-0FDA-464D-9903-3CDA927F6874</a:ObjectID>
 <a:Name>鏁欏璇勪及妯℃澘銆佸熀鍦拌瘎浼伴厤缃�佺彮绾ц祫鏂欑鐞嗐�佸鍛樿瘎浠蜂俊鎭�</a:Name>
 <a:Code>鏁欏璇勪及妯℃澘銆佸熀鍦拌瘎浼伴厤缃�佺彮绾ц祫鏂欑鐞嗐�佸鍛樿瘎浠蜂俊鎭�</a:Code>
@@ -23055,47 +27999,47 @@
 <a:PageOrientation>1</a:PageOrientation>
 <a:PaperSource>15</a:PaperSource>
 <c:Symbols>
-<o:ExtendedDependencySymbol Id="o864">
+<o:ExtendedDependencySymbol Id="o1049">
 <a:CreationDate>1697435718</a:CreationDate>
-<a:ModificationDate>1697453944</a:ModificationDate>
-<a:Rect>((17115,-9497), (65259,24060))</a:Rect>
-<a:ListOfPoints>((21090,1443),(21090,24060),(65259,24060),(65259,-9497),(17115,-9497))</a:ListOfPoints>
+<a:ModificationDate>1697633972</a:ModificationDate>
+<a:Rect>((18965,-9497), (65259,24060))</a:Rect>
+<a:ListOfPoints>((23217,1443),(23217,24060),(65259,24060),(65259,-9497),(18965,-9497))</a:ListOfPoints>
 <a:CornerStyle>1</a:CornerStyle>
 <a:ArrowStyle>8</a:ArrowStyle>
 <a:LineColor>16744576</a:LineColor>
 <a:ShadowColor>12632256</a:ShadowColor>
 <a:FontList>OBJXSTR 0 Arial,8,N</a:FontList>
 <c:SourceSymbol>
-<o:TableSymbol Ref="o865"/>
+<o:TableSymbol Ref="o1050"/>
 </c:SourceSymbol>
 <c:DestinationSymbol>
-<o:TableSymbol Ref="o865"/>
+<o:TableSymbol Ref="o1050"/>
 </c:DestinationSymbol>
 <c:Object>
-<o:ExtendedDependency Ref="o866"/>
+<o:ExtendedDependency Ref="o1051"/>
 </c:Object>
 </o:ExtendedDependencySymbol>
-<o:ExtendedDependencySymbol Id="o867">
+<o:ExtendedDependencySymbol Id="o1052">
 <a:CreationDate>1697435718</a:CreationDate>
-<a:ModificationDate>1697528478</a:ModificationDate>
-<a:Rect>((-18485,-447), (-7485,153))</a:Rect>
-<a:ListOfPoints>((-18485,44),(-13492,44),(-13492,-339),(-7485,-339))</a:ListOfPoints>
+<a:ModificationDate>1697631104</a:ModificationDate>
+<a:Rect>((-18485,-447), (-7347,153))</a:Rect>
+<a:ListOfPoints>((-18485,44),(-13492,44),(-13492,-339),(-7347,-339))</a:ListOfPoints>
 <a:CornerStyle>1</a:CornerStyle>
 <a:ArrowStyle>8</a:ArrowStyle>
 <a:LineColor>16744576</a:LineColor>
 <a:ShadowColor>12632256</a:ShadowColor>
 <a:FontList>OBJXSTR 0 Arial,8,N</a:FontList>
 <c:SourceSymbol>
-<o:TableSymbol Ref="o868"/>
+<o:TableSymbol Ref="o1053"/>
 </c:SourceSymbol>
 <c:DestinationSymbol>
-<o:TableSymbol Ref="o865"/>
+<o:TableSymbol Ref="o1050"/>
 </c:DestinationSymbol>
 <c:Object>
-<o:ExtendedDependency Ref="o869"/>
+<o:ExtendedDependency Ref="o1054"/>
 </c:Object>
 </o:ExtendedDependencySymbol>
-<o:TableSymbol Id="o868">
+<o:TableSymbol Id="o1053">
 <a:CreationDate>1697435718</a:CreationDate>
 <a:ModificationDate>1697528478</a:ModificationDate>
 <a:IconMode>-1</a:IconMode>
@@ -23119,14 +28063,14 @@
 <a:GradientEndColor>16777215</a:GradientEndColor>
 <a:ManuallyResized>1</a:ManuallyResized>
 <c:Object>
-<o:Table Ref="o870"/>
+<o:Table Ref="o1055"/>
 </c:Object>
 </o:TableSymbol>
-<o:TableSymbol Id="o865">
+<o:TableSymbol Id="o1050">
 <a:CreationDate>1697435718</a:CreationDate>
-<a:ModificationDate>1697453944</a:ModificationDate>
+<a:ModificationDate>1697633972</a:ModificationDate>
 <a:IconMode>-1</a:IconMode>
-<a:Rect>((-9470,-21404), (34698,4010))</a:Rect>
+<a:Rect>((-9470,-21404), (37772,4010))</a:Rect>
 <a:AutoAdjustToText>0</a:AutoAdjustToText>
 <a:LineColor>12615680</a:LineColor>
 <a:FillColor>16570034</a:FillColor>
@@ -23146,10 +28090,10 @@
 <a:GradientEndColor>16777215</a:GradientEndColor>
 <a:ManuallyResized>1</a:ManuallyResized>
 <c:Object>
-<o:Table Ref="o871"/>
+<o:Table Ref="o1056"/>
 </c:Object>
 </o:TableSymbol>
-<o:TableSymbol Id="o872">
+<o:TableSymbol Id="o1057">
 <a:CreationDate>1697435718</a:CreationDate>
 <a:ModificationDate>1697528476</a:ModificationDate>
 <a:IconMode>-1</a:IconMode>
@@ -23174,10 +28118,10 @@
 <a:GradientEndColor>16777215</a:GradientEndColor>
 <a:ManuallyResized>1</a:ManuallyResized>
 <c:Object>
-<o:Table Ref="o873"/>
+<o:Table Ref="o1058"/>
 </c:Object>
 </o:TableSymbol>
-<o:TableSymbol Id="o874">
+<o:TableSymbol Id="o1059">
 <a:CreationDate>1697435736</a:CreationDate>
 <a:ModificationDate>1697461871</a:ModificationDate>
 <a:IconMode>-1</a:IconMode>
@@ -23202,10 +28146,10 @@
 <a:GradientEndColor>16777215</a:GradientEndColor>
 <a:ManuallyResized>1</a:ManuallyResized>
 <c:Object>
-<o:Table Ref="o875"/>
+<o:Table Ref="o1060"/>
 </c:Object>
 </o:TableSymbol>
-<o:TableSymbol Id="o876">
+<o:TableSymbol Id="o1061">
 <a:CreationDate>1697435736</a:CreationDate>
 <a:ModificationDate>1697461871</a:ModificationDate>
 <a:IconMode>-1</a:IconMode>
@@ -23230,10 +28174,10 @@
 <a:GradientEndColor>16777215</a:GradientEndColor>
 <a:ManuallyResized>1</a:ManuallyResized>
 <c:Object>
-<o:Table Ref="o877"/>
+<o:Table Ref="o1062"/>
 </c:Object>
 </o:TableSymbol>
-<o:TableSymbol Id="o878">
+<o:TableSymbol Id="o1063">
 <a:CreationDate>1697435736</a:CreationDate>
 <a:ModificationDate>1697461871</a:ModificationDate>
 <a:IconMode>-1</a:IconMode>
@@ -23258,10 +28202,10 @@
 <a:GradientEndColor>16777215</a:GradientEndColor>
 <a:ManuallyResized>1</a:ManuallyResized>
 <c:Object>
-<o:Table Ref="o879"/>
+<o:Table Ref="o1064"/>
 </c:Object>
 </o:TableSymbol>
-<o:TableSymbol Id="o880">
+<o:TableSymbol Id="o1065">
 <a:CreationDate>1697435736</a:CreationDate>
 <a:ModificationDate>1697461871</a:ModificationDate>
 <a:IconMode>-1</a:IconMode>
@@ -23286,10 +28230,10 @@
 <a:GradientEndColor>16777215</a:GradientEndColor>
 <a:ManuallyResized>1</a:ManuallyResized>
 <c:Object>
-<o:Table Ref="o881"/>
+<o:Table Ref="o1066"/>
 </c:Object>
 </o:TableSymbol>
-<o:TableSymbol Id="o882">
+<o:TableSymbol Id="o1067">
 <a:CreationDate>1697435736</a:CreationDate>
 <a:ModificationDate>1697461871</a:ModificationDate>
 <a:IconMode>-1</a:IconMode>
@@ -23314,10 +28258,10 @@
 <a:GradientEndColor>16777215</a:GradientEndColor>
 <a:ManuallyResized>1</a:ManuallyResized>
 <c:Object>
-<o:Table Ref="o883"/>
+<o:Table Ref="o1068"/>
 </c:Object>
 </o:TableSymbol>
-<o:TableSymbol Id="o884">
+<o:TableSymbol Id="o1069">
 <a:CreationDate>1697435736</a:CreationDate>
 <a:ModificationDate>1697461871</a:ModificationDate>
 <a:IconMode>-1</a:IconMode>
@@ -23342,28 +28286,28 @@
 <a:GradientEndColor>16777215</a:GradientEndColor>
 <a:ManuallyResized>1</a:ManuallyResized>
 <c:Object>
-<o:Table Ref="o885"/>
+<o:Table Ref="o1070"/>
 </c:Object>
 </o:TableSymbol>
 </c:Symbols>
 </o:PhysicalDiagram>
 </c:PhysicalDiagrams>
 <c:DefaultDiagram>
-<o:PhysicalDiagram Ref="o863"/>
+<o:PhysicalDiagram Ref="o1048"/>
 </c:DefaultDiagram>
 <c:Tables>
-<o:Table Id="o870">
+<o:Table Id="o1055">
 <a:ObjectID>8903DC81-C479-480E-A0F4-878F1B991F63</a:ObjectID>
 <a:Name>璇勪及妯℃澘銆恇ase_evaluation_template銆�</a:Name>
 <a:Code>base_evaluation_template</a:Code>
 <a:CreationDate>1697435718</a:CreationDate>
 <a:Creator>WYH</a:Creator>
-<a:ModificationDate>1697528440</a:ModificationDate>
+<a:ModificationDate>1697619688</a:ModificationDate>
 <a:Modifier>WYH</a:Modifier>
 <a:Comment>璇勪及妯℃澘銆恇ase_evaluation_template銆�</a:Comment>
 <a:TotalSavingCurrency/>
 <c:Columns>
-<o:Column Id="o886">
+<o:Column Id="o1071">
 <a:ObjectID>4A0D5F87-0198-421A-813E-E964A9C89CA5</a:ObjectID>
 <a:Name>ID</a:Name>
 <a:Code>id</a:Code>
@@ -23376,7 +28320,7 @@
 <a:Length>32</a:Length>
 <a:Mandatory>1</a:Mandatory>
 </o:Column>
-<o:Column Id="o887">
+<o:Column Id="o1072">
 <a:ObjectID>EC18C9EF-9829-49AC-9AAA-73BD76AD871A</a:ObjectID>
 <a:Name>妯℃澘鍚嶇О</a:Name>
 <a:Code>template_name</a:Code>
@@ -23388,19 +28332,7 @@
 <a:DataType>VARCHAR(100)</a:DataType>
 <a:Length>100</a:Length>
 </o:Column>
-<o:Column Id="o888">
-<a:ObjectID>EBBE522E-C10D-48A5-9109-8706A195CB54</a:ObjectID>
-<a:Name>妯℃澘绫诲瀷銆�1锛氭暀瀛﹁瘎浼�  2锛氳鍚庤瘎浼般��</a:Name>
-<a:Code>type</a:Code>
-<a:CreationDate>1697435718</a:CreationDate>
-<a:Creator>WYH</a:Creator>
-<a:ModificationDate>1697445249</a:ModificationDate>
-<a:Modifier>WYH</a:Modifier>
-<a:Comment>妯℃澘绫诲瀷銆�1锛氭暀瀛﹁瘎浼�  2锛氳鍚庤瘎浼般��</a:Comment>
-<a:DataType>INT2</a:DataType>
-<a:Length>2</a:Length>
-</o:Column>
-<o:Column Id="o889">
+<o:Column Id="o1073">
 <a:ObjectID>3160CC73-1D35-43B7-A173-575BE2E0A7E8</a:ObjectID>
 <a:Name>鐘舵�併��0锛氬惎鐢� 1锛氱鐢� 2锛氬垹闄� 銆�</a:Name>
 <a:Code>status</a:Code>
@@ -23412,7 +28344,7 @@
 <a:DataType>INT2</a:DataType>
 <a:Length>2</a:Length>
 </o:Column>
-<o:Column Id="o890">
+<o:Column Id="o1074">
 <a:ObjectID>2E7E26FB-B341-4F67-9F25-5504885E2F1A</a:ObjectID>
 <a:Name>鍒涘缓浜�</a:Name>
 <a:Code>create_user_id</a:Code>
@@ -23424,7 +28356,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o891">
+<o:Column Id="o1075">
 <a:ObjectID>DBA94AC3-5D55-4C57-97F0-2F99BD58CC7F</a:ObjectID>
 <a:Name>鍒涘缓浜哄悕绉�</a:Name>
 <a:Code>create_user_name</a:Code>
@@ -23436,7 +28368,7 @@
 <a:DataType>VARCHAR(50)</a:DataType>
 <a:Length>50</a:Length>
 </o:Column>
-<o:Column Id="o892">
+<o:Column Id="o1076">
 <a:ObjectID>941ED8F8-A56B-4020-A62C-00C26539081D</a:ObjectID>
 <a:Name>鍒涘缓鏃堕棿</a:Name>
 <a:Code>create_time</a:Code>
@@ -23448,7 +28380,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o893">
+<o:Column Id="o1077">
 <a:ObjectID>FCF2EE0F-F357-4DF0-ACB3-61694635A20B</a:ObjectID>
 <a:Name>鏇存柊浜�</a:Name>
 <a:Code>update_user_id</a:Code>
@@ -23460,7 +28392,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o894">
+<o:Column Id="o1078">
 <a:ObjectID>62352109-F852-44A9-A750-6BC43906081E</a:ObjectID>
 <a:Name>鏇存柊浜哄悕绉�</a:Name>
 <a:Code>update_user_name</a:Code>
@@ -23472,7 +28404,7 @@
 <a:DataType>VARCHAR(50)</a:DataType>
 <a:Length>50</a:Length>
 </o:Column>
-<o:Column Id="o895">
+<o:Column Id="o1079">
 <a:ObjectID>15B69D7B-2769-4883-9112-9FA1BD7FEC0F</a:ObjectID>
 <a:Name>鏇存柊鏃堕棿</a:Name>
 <a:Code>update_time</a:Code>
@@ -23484,7 +28416,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o896">
+<o:Column Id="o1080">
 <a:ObjectID>A4CB17AC-9645-49EE-8848-4D8966CAAC97</a:ObjectID>
 <a:Name>宸茬粡琚娇鐢ㄣ��1锛氶攣瀹氥��0锛氭湭閿佸畾銆�</a:Name>
 <a:Code>used</a:Code>
@@ -23498,7 +28430,7 @@
 </o:Column>
 </c:Columns>
 <c:Keys>
-<o:Key Id="o897">
+<o:Key Id="o1081">
 <a:ObjectID>0BC8EB87-480D-44F4-8CBE-F0E3DEF21B21</a:ObjectID>
 <a:Name>Key_1</a:Name>
 <a:Code>Key_1</a:Code>
@@ -23507,15 +28439,15 @@
 <a:ModificationDate>1697435718</a:ModificationDate>
 <a:Modifier>WYH</a:Modifier>
 <c:Key.Columns>
-<o:Column Ref="o886"/>
+<o:Column Ref="o1071"/>
 </c:Key.Columns>
 </o:Key>
 </c:Keys>
 <c:PrimaryKey>
-<o:Key Ref="o897"/>
+<o:Key Ref="o1081"/>
 </c:PrimaryKey>
 </o:Table>
-<o:Table Id="o871">
+<o:Table Id="o1056">
 <a:ObjectID>FDBB30B4-AE25-458C-85E4-55B31696390A</a:ObjectID>
 <a:Name>璇勪及椤广�恇ase_evaluation_item銆�</a:Name>
 <a:Code>base_evaluation_item</a:Code>
@@ -23526,7 +28458,7 @@
 <a:Comment>璇勪及椤广�恇ase_evaluation_item銆�</a:Comment>
 <a:TotalSavingCurrency/>
 <c:Columns>
-<o:Column Id="o898">
+<o:Column Id="o1082">
 <a:ObjectID>690F4EE1-ED52-45C9-B3C1-80C00CEF9CEA</a:ObjectID>
 <a:Name>ID</a:Name>
 <a:Code>ID</a:Code>
@@ -23539,7 +28471,7 @@
 <a:Length>32</a:Length>
 <a:Mandatory>1</a:Mandatory>
 </o:Column>
-<o:Column Id="o899">
+<o:Column Id="o1083">
 <a:ObjectID>452E2E2A-1A7E-4CD7-AB1D-5F3A2585993A</a:ObjectID>
 <a:Name>鎵�灞炴ā鏉�</a:Name>
 <a:Code>template_id</a:Code>
@@ -23551,7 +28483,7 @@
 <a:DataType>VARCHAR(32)</a:DataType>
 <a:Length>32</a:Length>
 </o:Column>
-<o:Column Id="o900">
+<o:Column Id="o1084">
 <a:ObjectID>7EF3D3E0-FCFB-43BD-88A3-3514D9A86C92</a:ObjectID>
 <a:Name>璇勪及椤瑰悕绉�</a:Name>
 <a:Code>item_name</a:Code>
@@ -23563,7 +28495,7 @@
 <a:DataType>VARCHAR(200)</a:DataType>
 <a:Length>200</a:Length>
 </o:Column>
-<o:Column Id="o901">
+<o:Column Id="o1085">
 <a:ObjectID>5B0A08F4-D9D0-4C12-B95A-08FB83157AA0</a:ObjectID>
 <a:Name>璇勪及椤圭被鍨嬨��1锛氳瘎浼伴」   2锛氭枃鏈��</a:Name>
 <a:Code>item_type</a:Code>
@@ -23575,7 +28507,7 @@
 <a:DataType>INT2</a:DataType>
 <a:Length>2</a:Length>
 </o:Column>
-<o:Column Id="o902">
+<o:Column Id="o1086">
 <a:ObjectID>03E94D86-55FF-4365-8DE8-6CC10E110D7E</a:ObjectID>
 <a:Name>璇勪及椤规爣璇嗐�愮敤浜庡悗鏈熺粺璁★紝缁熻鍏ㄧ綉璇勪环椤癸紝鐢ㄦ潵姹囨�诲崟椤硅瘎浠枫��</a:Name>
 <a:Code>item_key</a:Code>
@@ -23587,7 +28519,7 @@
 <a:DataType>VARCHAR(10)</a:DataType>
 <a:Length>10</a:Length>
 </o:Column>
-<o:Column Id="o903">
+<o:Column Id="o1087">
 <a:ObjectID>FF243997-366F-4079-8D54-B8CE43E731FF</a:ObjectID>
 <a:Name>椤哄簭鍙�</a:Name>
 <a:Code>order_num</a:Code>
@@ -23599,7 +28531,7 @@
 <a:DataType>INT4</a:DataType>
 <a:Length>4</a:Length>
 </o:Column>
-<o:Column Id="o904">
+<o:Column Id="o1088">
 <a:ObjectID>90C87F80-DE04-4AD4-B07A-725772A5EB18</a:ObjectID>
 <a:Name>澶囨敞淇℃伅</a:Name>
 <a:Code>note</a:Code>
@@ -23611,7 +28543,7 @@
 <a:DataType>VARCHAR(200)</a:DataType>
 <a:Length>200</a:Length>
 </o:Column>
-<o:Column Id="o905">
+<o:Column Id="o1089">
 <a:ObjectID>ECC0D99A-AAFB-47BA-8BA0-E186712ADB5B</a:ObjectID>
 <a:Name>鎵�灞炰笂绾�</a:Name>
 <a:Code>up_id</a:Code>
@@ -23623,7 +28555,7 @@
 <a:DataType>VARCHAR(32)</a:DataType>
 <a:Length>32</a:Length>
 </o:Column>
-<o:Column Id="o906">
+<o:Column Id="o1090">
 <a:ObjectID>CA133B7B-FFE3-4295-B6D5-3DF1849CD848</a:ObjectID>
 <a:Name>鍒涘缓浜�</a:Name>
 <a:Code>create_user_id</a:Code>
@@ -23635,7 +28567,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o907">
+<o:Column Id="o1091">
 <a:ObjectID>3A3609B3-D157-4A1E-9FA0-8E1079A84BA9</a:ObjectID>
 <a:Name>鍒涘缓浜哄悕绉�</a:Name>
 <a:Code>create_user_name</a:Code>
@@ -23647,7 +28579,7 @@
 <a:DataType>VARCHAR(50)</a:DataType>
 <a:Length>50</a:Length>
 </o:Column>
-<o:Column Id="o908">
+<o:Column Id="o1092">
 <a:ObjectID>A828B354-2DCC-4831-921C-231A48F7C2DE</a:ObjectID>
 <a:Name>鍒涘缓鏃堕棿</a:Name>
 <a:Code>create_time</a:Code>
@@ -23659,7 +28591,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o909">
+<o:Column Id="o1093">
 <a:ObjectID>46A0F3C6-7E08-459E-890E-F36BAD185F46</a:ObjectID>
 <a:Name>鏇存柊浜�</a:Name>
 <a:Code>update_user_id</a:Code>
@@ -23671,7 +28603,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o910">
+<o:Column Id="o1094">
 <a:ObjectID>A696E508-F95B-450A-AD56-242206643A65</a:ObjectID>
 <a:Name>鏇存柊浜哄悕绉�</a:Name>
 <a:Code>update_user_name</a:Code>
@@ -23683,7 +28615,7 @@
 <a:DataType>VARCHAR(50)</a:DataType>
 <a:Length>50</a:Length>
 </o:Column>
-<o:Column Id="o911">
+<o:Column Id="o1095">
 <a:ObjectID>1B0A6CD1-DF82-4615-B18E-6502D961A194</a:ObjectID>
 <a:Name>鏇存柊鏃堕棿</a:Name>
 <a:Code>update_time</a:Code>
@@ -23695,7 +28627,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o912">
+<o:Column Id="o1096">
 <a:ObjectID>22C6AC1A-BA93-4E43-B3EF-9C2632CB79CD</a:ObjectID>
 <a:Name>鏄惁鏍规嵁璇捐〃鐢熸垚</a:Name>
 <a:Code>is_auto_add_course</a:Code>
@@ -23707,7 +28639,7 @@
 <a:DataType>INT2</a:DataType>
 <a:Length>2</a:Length>
 </o:Column>
-<o:Column Id="o913">
+<o:Column Id="o1097">
 <a:ObjectID>EC2EA2E9-5317-4F2A-8C66-2396FC53F1F6</a:ObjectID>
 <a:Name>鍩硅鐝璱d</a:Name>
 <a:Code>class_info_id</a:Code>
@@ -23719,7 +28651,7 @@
 <a:DataType>VARCHAR(32)</a:DataType>
 <a:Length>32</a:Length>
 </o:Column>
-<o:Column Id="o914">
+<o:Column Id="o1098">
 <a:ObjectID>2298AE85-9FAF-4CF4-8072-8E937B2B66C3</a:ObjectID>
 <a:Name>鏄惁鍏ㄧ綉銆�1锛氭槸銆�0鍚︺��</a:Name>
 <a:Code>is_default</a:Code>
@@ -23733,7 +28665,7 @@
 </o:Column>
 </c:Columns>
 <c:Keys>
-<o:Key Id="o915">
+<o:Key Id="o1099">
 <a:ObjectID>81CD6B09-E8BF-4FBE-A12C-E14BB946D187</a:ObjectID>
 <a:Name>Key_1</a:Name>
 <a:Code>Key_1</a:Code>
@@ -23742,15 +28674,15 @@
 <a:ModificationDate>1697435718</a:ModificationDate>
 <a:Modifier>WYH</a:Modifier>
 <c:Key.Columns>
-<o:Column Ref="o898"/>
+<o:Column Ref="o1082"/>
 </c:Key.Columns>
 </o:Key>
 </c:Keys>
 <c:PrimaryKey>
-<o:Key Ref="o915"/>
+<o:Key Ref="o1099"/>
 </c:PrimaryKey>
 </o:Table>
-<o:Table Id="o873">
+<o:Table Id="o1058">
 <a:ObjectID>4CEF921A-083E-46E8-A006-B50C5F0407C8</a:ObjectID>
 <a:Name>璇勪及椤逛笌璇剧▼鍏宠仈琛ㄣ�恇ase_evaluation_course銆�</a:Name>
 <a:Code>base_evaluation_course</a:Code>
@@ -23761,7 +28693,7 @@
 <a:Comment>璇勪及椤逛笌璇剧▼鍏宠仈琛ㄣ�恇ase_evaluation_course銆�</a:Comment>
 <a:TotalSavingCurrency/>
 <c:Columns>
-<o:Column Id="o916">
+<o:Column Id="o1100">
 <a:ObjectID>D216B699-55DB-473B-B42A-E861D50AA1ED</a:ObjectID>
 <a:Name>ID</a:Name>
 <a:Code>ID</a:Code>
@@ -23774,7 +28706,7 @@
 <a:Length>32</a:Length>
 <a:Mandatory>1</a:Mandatory>
 </o:Column>
-<o:Column Id="o917">
+<o:Column Id="o1101">
 <a:ObjectID>647B738F-E7B4-45B0-BF26-76E079559CB8</a:ObjectID>
 <a:Name>妯℃澘id</a:Name>
 <a:Code>template_id</a:Code>
@@ -23786,7 +28718,7 @@
 <a:DataType>VARCHAR(32)</a:DataType>
 <a:Length>32</a:Length>
 </o:Column>
-<o:Column Id="o918">
+<o:Column Id="o1102">
 <a:ObjectID>F097DB67-F147-48B9-AE7D-F21297B510B2</a:ObjectID>
 <a:Name>鐝骇id</a:Name>
 <a:Code>class_info_id</a:Code>
@@ -23798,7 +28730,7 @@
 <a:DataType>VARCHAR(32)</a:DataType>
 <a:Length>32</a:Length>
 </o:Column>
-<o:Column Id="o919">
+<o:Column Id="o1103">
 <a:ObjectID>10C3C88B-36CB-4EAB-B550-2943DB077601</a:ObjectID>
 <a:Name>璇剧▼id</a:Name>
 <a:Code>course_id</a:Code>
@@ -23810,7 +28742,7 @@
 <a:DataType>VARCHAR(32)</a:DataType>
 <a:Length>32</a:Length>
 </o:Column>
-<o:Column Id="o920">
+<o:Column Id="o1104">
 <a:ObjectID>DB8A3B49-88B9-4914-97C3-4C6B328F9BDA</a:ObjectID>
 <a:Name>璇剧▼鍚嶇О</a:Name>
 <a:Code>course_name</a:Code>
@@ -23822,7 +28754,7 @@
 <a:DataType>VARCHAR(100)</a:DataType>
 <a:Length>100</a:Length>
 </o:Column>
-<o:Column Id="o921">
+<o:Column Id="o1105">
 <a:ObjectID>B284A0F5-C757-4170-8370-549E23DCF0EF</a:ObjectID>
 <a:Name>璇勪及椤筰d</a:Name>
 <a:Code>evaluation_id</a:Code>
@@ -23834,7 +28766,7 @@
 <a:DataType>VARCHAR(32)</a:DataType>
 <a:Length>32</a:Length>
 </o:Column>
-<o:Column Id="o922">
+<o:Column Id="o1106">
 <a:ObjectID>77E1158A-B1A2-495D-9EF1-BC120AC3388E</a:ObjectID>
 <a:Name>鐘舵�� 0锛氭甯搞��1锛氱鐢�</a:Name>
 <a:Code>status</a:Code>
@@ -23848,7 +28780,7 @@
 </o:Column>
 </c:Columns>
 <c:Keys>
-<o:Key Id="o923">
+<o:Key Id="o1107">
 <a:ObjectID>4F4B5371-5314-4A47-8D8B-064AFEA47AA8</a:ObjectID>
 <a:Name>Key_1</a:Name>
 <a:Code>Key_1</a:Code>
@@ -23857,26 +28789,26 @@
 <a:ModificationDate>1697435718</a:ModificationDate>
 <a:Modifier>WYH</a:Modifier>
 <c:Key.Columns>
-<o:Column Ref="o916"/>
+<o:Column Ref="o1100"/>
 </c:Key.Columns>
 </o:Key>
 </c:Keys>
 <c:PrimaryKey>
-<o:Key Ref="o923"/>
+<o:Key Ref="o1107"/>
 </c:PrimaryKey>
 </o:Table>
-<o:Table Id="o875">
+<o:Table Id="o1060">
 <a:ObjectID>C7CC12F6-7E5A-49EA-BB0D-AE4648629AF8</a:ObjectID>
-<a:Name>鐝骇璇勪及鍘嗗彶琛ㄣ�恇ase_evaluation_class_appraisal_his銆�</a:Name>
-<a:Code>base_evaluation_class_appraisal_his</a:Code>
+<a:Name>鐝骇璇勪及鍘嗗彶琛ㄣ�恊valuation_class_appraisal銆�</a:Name>
+<a:Code>evaluation_class_appraisal</a:Code>
 <a:CreationDate>1697435736</a:CreationDate>
 <a:Creator>WYH</a:Creator>
-<a:ModificationDate>1697461782</a:ModificationDate>
+<a:ModificationDate>1697627559</a:ModificationDate>
 <a:Modifier>WYH</a:Modifier>
-<a:Comment>鐝骇璇勪及鍘嗗彶琛ㄣ�恇ase_evaluation_class_appraisal_his銆�</a:Comment>
+<a:Comment>鐝骇璇勪及鍘嗗彶琛ㄣ�恊valuation_class_appraisal銆�</a:Comment>
 <a:TotalSavingCurrency/>
 <c:Columns>
-<o:Column Id="o924">
+<o:Column Id="o1108">
 <a:ObjectID>CDF3BA99-16BF-4BCA-8571-94289BD5E820</a:ObjectID>
 <a:Name>ID</a:Name>
 <a:Code>ID</a:Code>
@@ -23889,7 +28821,7 @@
 <a:Length>32</a:Length>
 <a:Mandatory>1</a:Mandatory>
 </o:Column>
-<o:Column Id="o925">
+<o:Column Id="o1109">
 <a:ObjectID>1ABA30BC-377E-4CD7-A815-9699101F90D5</a:ObjectID>
 <a:Name>妯℃澘id</a:Name>
 <a:Code>template_id</a:Code>
@@ -23901,7 +28833,7 @@
 <a:DataType>VARCHAR(32)</a:DataType>
 <a:Length>32</a:Length>
 </o:Column>
-<o:Column Id="o926">
+<o:Column Id="o1110">
 <a:ObjectID>1784B33B-2709-4E58-B40F-E7865F6E3D97</a:ObjectID>
 <a:Name>妯℃澘鍚嶇О</a:Name>
 <a:Code>template_name</a:Code>
@@ -23913,7 +28845,7 @@
 <a:DataType>VARCHAR(100)</a:DataType>
 <a:Length>100</a:Length>
 </o:Column>
-<o:Column Id="o927">
+<o:Column Id="o1111">
 <a:ObjectID>26DDDAE3-A56D-4EDB-9B22-5099767474E4</a:ObjectID>
 <a:Name>鐝骇id</a:Name>
 <a:Code>class_info_id</a:Code>
@@ -23925,7 +28857,7 @@
 <a:DataType>VARCHAR(32)</a:DataType>
 <a:Length>32</a:Length>
 </o:Column>
-<o:Column Id="o928">
+<o:Column Id="o1112">
 <a:ObjectID>C31F4FCE-A002-48DC-9C27-09B842655D45</a:ObjectID>
 <a:Name>瀛﹀憳鎬绘暟</a:Name>
 <a:Code>user_num_total</a:Code>
@@ -23937,7 +28869,7 @@
 <a:DataType>INT2</a:DataType>
 <a:Length>2</a:Length>
 </o:Column>
-<o:Column Id="o929">
+<o:Column Id="o1113">
 <a:ObjectID>012EEA39-E59A-4C3D-9A85-98386939DB58</a:ObjectID>
 <a:Name>宸茶瘎浠锋暟</a:Name>
 <a:Code>appraisal_num</a:Code>
@@ -23949,7 +28881,7 @@
 <a:DataType>INT2</a:DataType>
 <a:Length>2</a:Length>
 </o:Column>
-<o:Column Id="o930">
+<o:Column Id="o1114">
 <a:ObjectID>668F8115-4ECE-4C56-AAD6-BF7A69BC509C</a:ObjectID>
 <a:Name>鏈瘎浠锋暟</a:Name>
 <a:Code>not_appraisal_num</a:Code>
@@ -23961,20 +28893,20 @@
 <a:DataType>INT2</a:DataType>
 <a:Length>2</a:Length>
 </o:Column>
-<o:Column Id="o931">
+<o:Column Id="o1115">
 <a:ObjectID>5CB6FB47-3430-422A-A47B-E4B235EDE7B8</a:ObjectID>
 <a:Name>鍙傝瘎鐜�</a:Name>
-<a:Code>participation_appraisal_percentage</a:Code>
+<a:Code>join_appraisal_rate</a:Code>
 <a:CreationDate>1697435736</a:CreationDate>
 <a:Creator>WYH</a:Creator>
-<a:ModificationDate>1697438583</a:ModificationDate>
+<a:ModificationDate>1697625750</a:ModificationDate>
 <a:Modifier>WYH</a:Modifier>
 <a:Comment>鍙傝瘎鐜�</a:Comment>
 <a:DataType>NUMERIC(8,2)</a:DataType>
 <a:Length>8</a:Length>
 <a:Precision>2</a:Precision>
 </o:Column>
-<o:Column Id="o932">
+<o:Column Id="o1116">
 <a:ObjectID>87276137-B814-4BF9-A657-B4998E9BB55A</a:ObjectID>
 <a:Name>鐘舵�併�愭槸鍚︾粨鏉�1锛氱粨鏉熴��0鏈粨鏉熴��</a:Name>
 <a:Code>is_over</a:Code>
@@ -23986,7 +28918,7 @@
 <a:DataType>INT2</a:DataType>
 <a:Length>2</a:Length>
 </o:Column>
-<o:Column Id="o933">
+<o:Column Id="o1117">
 <a:ObjectID>F9D1A1F9-8B42-491C-826E-CBF13828D9EB</a:ObjectID>
 <a:Name>寮�濮嬫椂闂�</a:Name>
 <a:Code>start_tme</a:Code>
@@ -23998,7 +28930,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o934">
+<o:Column Id="o1118">
 <a:ObjectID>D59091C3-9A39-44E7-9908-A3136925EFD1</a:ObjectID>
 <a:Name>缁撴潫鏃堕棿</a:Name>
 <a:Code>end_time</a:Code>
@@ -24010,7 +28942,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o935">
+<o:Column Id="o1119">
 <a:ObjectID>B0F1F5F9-8D8C-4FAE-9883-AD05AE967D39</a:ObjectID>
 <a:Name>缁撴潫鍓嶏紵澶�</a:Name>
 <a:Code>before_day_num</a:Code>
@@ -24022,7 +28954,7 @@
 <a:DataType>INT2</a:DataType>
 <a:Length>2</a:Length>
 </o:Column>
-<o:Column Id="o936">
+<o:Column Id="o1120">
 <a:ObjectID>217B3D6E-5714-407B-818D-98852E3C6941</a:ObjectID>
 <a:Name>鎻愰啋鏃ユ湡銆恲yyyMMdd銆�</a:Name>
 <a:Code>remind_time</a:Code>
@@ -24036,7 +28968,7 @@
 </o:Column>
 </c:Columns>
 <c:Keys>
-<o:Key Id="o937">
+<o:Key Id="o1121">
 <a:ObjectID>F8E27ACA-9689-440D-A294-FD6B7ABADAAC</a:ObjectID>
 <a:Name>Key_1</a:Name>
 <a:Code>Key_1</a:Code>
@@ -24045,26 +28977,26 @@
 <a:ModificationDate>1697435736</a:ModificationDate>
 <a:Modifier>WYH</a:Modifier>
 <c:Key.Columns>
-<o:Column Ref="o924"/>
+<o:Column Ref="o1108"/>
 </c:Key.Columns>
 </o:Key>
 </c:Keys>
 <c:PrimaryKey>
-<o:Key Ref="o937"/>
+<o:Key Ref="o1121"/>
 </c:PrimaryKey>
 </o:Table>
-<o:Table Id="o877">
+<o:Table Id="o1062">
 <a:ObjectID>255F7E7E-721D-4E8E-8908-DAB49AC51CE2</a:ObjectID>
-<a:Name>瀛﹀憳璇勪及鍗曢」鍘嗗彶琛ㄣ�恇ase_evaluation_user_appraisal_item_his銆�</a:Name>
-<a:Code>base_evaluation_user_appraisal_item_his</a:Code>
+<a:Name>瀛﹀憳璇勪及鍗曢」鍘嗗彶琛ㄣ�恊valuation_user_appraisal_item銆�</a:Name>
+<a:Code>evaluation_user_appraisal_item</a:Code>
 <a:CreationDate>1697435736</a:CreationDate>
 <a:Creator>WYH</a:Creator>
-<a:ModificationDate>1697437180</a:ModificationDate>
+<a:ModificationDate>1697627604</a:ModificationDate>
 <a:Modifier>WYH</a:Modifier>
-<a:Comment>瀛﹀憳璇勪及鍘嗗彶琛ㄣ�恇ase_evaluation_user_appraisal_item_his銆�</a:Comment>
+<a:Comment>瀛﹀憳璇勪及鍗曢」鍘嗗彶琛ㄣ�恊valuation_user_appraisal_item銆�</a:Comment>
 <a:TotalSavingCurrency/>
 <c:Columns>
-<o:Column Id="o938">
+<o:Column Id="o1122">
 <a:ObjectID>08DF01A4-4CEF-4C74-9D2F-4DBEF8A5A056</a:ObjectID>
 <a:Name>ID</a:Name>
 <a:Code>id</a:Code>
@@ -24077,7 +29009,7 @@
 <a:Length>32</a:Length>
 <a:Mandatory>1</a:Mandatory>
 </o:Column>
-<o:Column Id="o939">
+<o:Column Id="o1123">
 <a:ObjectID>A4BB9D82-C966-4339-BE55-07EF4793D57A</a:ObjectID>
 <a:Name>鎵�灞炴ā鏉縤d</a:Name>
 <a:Code>template_id</a:Code>
@@ -24089,7 +29021,7 @@
 <a:DataType>VARCHAR(32)</a:DataType>
 <a:Length>32</a:Length>
 </o:Column>
-<o:Column Id="o940">
+<o:Column Id="o1124">
 <a:ObjectID>295D2168-BEFD-4691-8878-9CBD1DA80216</a:ObjectID>
 <a:Name>璇勪及椤笽D</a:Name>
 <a:Code>item_id</a:Code>
@@ -24101,7 +29033,7 @@
 <a:DataType>VARCHAR(32)</a:DataType>
 <a:Length>32</a:Length>
 </o:Column>
-<o:Column Id="o941">
+<o:Column Id="o1125">
 <a:ObjectID>5AB9D083-3A52-488C-85BB-8CE3EC9472BA</a:ObjectID>
 <a:Name>璇勪及椤圭被鍨嬨��1锛氳瘎浼伴」   2锛氭枃鏈��</a:Name>
 <a:Code>item_type</a:Code>
@@ -24113,7 +29045,7 @@
 <a:DataType>INT2</a:DataType>
 <a:Length>2</a:Length>
 </o:Column>
-<o:Column Id="o942">
+<o:Column Id="o1126">
 <a:ObjectID>DF703E48-AD06-45C3-9C52-6DB85A10EE4D</a:ObjectID>
 <a:Name>鍩硅鐝璱d</a:Name>
 <a:Code>class_info_id</a:Code>
@@ -24125,7 +29057,7 @@
 <a:DataType>VARCHAR(32)</a:DataType>
 <a:Length>32</a:Length>
 </o:Column>
-<o:Column Id="o943">
+<o:Column Id="o1127">
 <a:ObjectID>146730EA-CFA0-48DC-8CDF-CD11A51286B4</a:ObjectID>
 <a:Name>璇勪及浜�</a:Name>
 <a:Code>create_user_id</a:Code>
@@ -24137,7 +29069,7 @@
 <a:DataType>VARCHAR(32)</a:DataType>
 <a:Length>32</a:Length>
 </o:Column>
-<o:Column Id="o944">
+<o:Column Id="o1128">
 <a:ObjectID>746A6DF9-5AFD-4E61-B7FF-3BE03C7A3B31</a:ObjectID>
 <a:Name>璇勪及鏃堕棿</a:Name>
 <a:Code>create_time</a:Code>
@@ -24149,7 +29081,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o945">
+<o:Column Id="o1129">
 <a:ObjectID>7D3C258E-CA85-49B8-8CAC-E4E5CDA0A0E3</a:ObjectID>
 <a:Name>鏄惁鍏ㄧ綉鍙傛暟</a:Name>
 <a:Code>IS_defult</a:Code>
@@ -24161,7 +29093,7 @@
 <a:DataType>INT2</a:DataType>
 <a:Length>2</a:Length>
 </o:Column>
-<o:Column Id="o946">
+<o:Column Id="o1130">
 <a:ObjectID>738EA851-C4EA-4674-8D6E-BF46AB11F30E</a:ObjectID>
 <a:Name>璇勪及椤逛笌璇剧▼鍏宠仈琛ㄣ�恇ase_evaluation_course銆�</a:Name>
 <a:Code>evaluation_course_id</a:Code>
@@ -24173,7 +29105,7 @@
 <a:DataType>VARCHAR(32)</a:DataType>
 <a:Length>32</a:Length>
 </o:Column>
-<o:Column Id="o947">
+<o:Column Id="o1131">
 <a:ObjectID>7D342C23-600C-43AA-A784-09C7F5B84429</a:ObjectID>
 <a:Name>鐧惧垎鍒跺緱鍒�</a:Name>
 <a:Code>score_hundred</a:Code>
@@ -24186,7 +29118,7 @@
 <a:Length>8</a:Length>
 <a:Precision>2</a:Precision>
 </o:Column>
-<o:Column Id="o948">
+<o:Column Id="o1132">
 <a:ObjectID>78C4403D-ED79-4E21-9A6F-034649C4F206</a:ObjectID>
 <a:Name>浜斿垎鍒跺緱鍒�</a:Name>
 <a:Code>score_five</a:Code>
@@ -24199,7 +29131,7 @@
 <a:Length>8</a:Length>
 <a:Precision>2</a:Precision>
 </o:Column>
-<o:Column Id="o949">
+<o:Column Id="o1133">
 <a:ObjectID>A9B0E7FA-C6CD-4BA4-8262-E1A7C5A28F42</a:ObjectID>
 <a:Name>璇勪环淇℃伅锛堟枃鏈級</a:Name>
 <a:Code>appraisal_text</a:Code>
@@ -24213,7 +29145,7 @@
 </o:Column>
 </c:Columns>
 <c:Keys>
-<o:Key Id="o950">
+<o:Key Id="o1134">
 <a:ObjectID>6F2D1992-1A59-4EFA-ABC0-3CBAADDE17C2</a:ObjectID>
 <a:Name>Key_1</a:Name>
 <a:Code>Key_1</a:Code>
@@ -24222,26 +29154,26 @@
 <a:ModificationDate>1697435736</a:ModificationDate>
 <a:Modifier>WYH</a:Modifier>
 <c:Key.Columns>
-<o:Column Ref="o938"/>
+<o:Column Ref="o1122"/>
 </c:Key.Columns>
 </o:Key>
 </c:Keys>
 <c:PrimaryKey>
-<o:Key Ref="o950"/>
+<o:Key Ref="o1134"/>
 </c:PrimaryKey>
 </o:Table>
-<o:Table Id="o879">
+<o:Table Id="o1064">
 <a:ObjectID>3526524F-C118-4384-892A-65563E014E99</a:ObjectID>
-<a:Name>椤剁骇璇勪环椤圭彮绾у緱鍒嗚〃銆怌T_EVALUATION_TOP_CLASS_APPR_HIS銆�</a:Name>
-<a:Code>CT_EVALUATION_TOP_CLASS_APPR_HIS</a:Code>
+<a:Name>椤剁骇璇勪环椤圭彮绾у緱鍒嗚〃銆恊valuation_class_appraisal_top銆�</a:Name>
+<a:Code>evaluation_class_appraisal_top</a:Code>
 <a:CreationDate>1697435736</a:CreationDate>
 <a:Creator>WYH</a:Creator>
-<a:ModificationDate>1697435883</a:ModificationDate>
+<a:ModificationDate>1697628071</a:ModificationDate>
 <a:Modifier>WYH</a:Modifier>
-<a:Comment>椤剁骇璇勪环椤圭彮绾у緱鍒嗚〃銆怌T_EVALUATION_TOP_CLASS_APPR_HIS銆�</a:Comment>
+<a:Comment>椤剁骇璇勪环椤圭彮绾у緱鍒嗚〃銆恊valuation_class_appraisal_top銆�</a:Comment>
 <a:TotalSavingCurrency/>
 <c:Columns>
-<o:Column Id="o951">
+<o:Column Id="o1135">
 <a:ObjectID>CE78AF97-F985-47D2-A64A-17549F9E1B03</a:ObjectID>
 <a:Name>ID</a:Name>
 <a:Code>id</a:Code>
@@ -24254,7 +29186,7 @@
 <a:Length>32</a:Length>
 <a:Mandatory>1</a:Mandatory>
 </o:Column>
-<o:Column Id="o952">
+<o:Column Id="o1136">
 <a:ObjectID>A3B3F4C6-228A-46C2-838C-1650188B5FE0</a:ObjectID>
 <a:Name>鎵�灞炴ā鏉縤d</a:Name>
 <a:Code>template_id</a:Code>
@@ -24266,7 +29198,7 @@
 <a:DataType>VARCHAR(32)</a:DataType>
 <a:Length>32</a:Length>
 </o:Column>
-<o:Column Id="o953">
+<o:Column Id="o1137">
 <a:ObjectID>CF47FE48-3C04-484F-A7D3-DD75F8E0715B</a:ObjectID>
 <a:Name>璇勪及椤笽D</a:Name>
 <a:Code>item_id</a:Code>
@@ -24278,7 +29210,7 @@
 <a:DataType>VARCHAR(200)</a:DataType>
 <a:Length>200</a:Length>
 </o:Column>
-<o:Column Id="o954">
+<o:Column Id="o1138">
 <a:ObjectID>BAA5734B-31D2-4E5A-A224-703F12EF1BAE</a:ObjectID>
 <a:Name>鍩硅鐝璱d</a:Name>
 <a:Code>class_info_id</a:Code>
@@ -24290,7 +29222,7 @@
 <a:DataType>VARCHAR(32)</a:DataType>
 <a:Length>32</a:Length>
 </o:Column>
-<o:Column Id="o955">
+<o:Column Id="o1139">
 <a:ObjectID>D3F0E8AD-37AB-428E-81C2-6EF854B05588</a:ObjectID>
 <a:Name>鏄惁鍏ㄧ綉鍙傛暟</a:Name>
 <a:Code>is_default</a:Code>
@@ -24302,7 +29234,7 @@
 <a:DataType>INT2</a:DataType>
 <a:Length>2</a:Length>
 </o:Column>
-<o:Column Id="o956">
+<o:Column Id="o1140">
 <a:ObjectID>5BD76C50-B49E-4E60-B59B-CCB9957DD146</a:ObjectID>
 <a:Name>璇勪及椤逛笌璇剧▼鍏宠仈琛ㄣ�恇ase_evaluation_course銆�</a:Name>
 <a:Code>evaluation_course_id</a:Code>
@@ -24314,7 +29246,7 @@
 <a:DataType>VARCHAR(32)</a:DataType>
 <a:Length>32</a:Length>
 </o:Column>
-<o:Column Id="o957">
+<o:Column Id="o1141">
 <a:ObjectID>0C6E3B73-B09B-4698-902B-F0EFB214A5AF</a:ObjectID>
 <a:Name>鐧惧垎鍒跺緱鍒�</a:Name>
 <a:Code>score_hundred</a:Code>
@@ -24327,7 +29259,7 @@
 <a:Length>8</a:Length>
 <a:Precision>2</a:Precision>
 </o:Column>
-<o:Column Id="o958">
+<o:Column Id="o1142">
 <a:ObjectID>A50531B9-4FAD-4E3B-8141-81FCA5906042</a:ObjectID>
 <a:Name>浜斿垎鍒跺緱鍒�</a:Name>
 <a:Code>score_five</a:Code>
@@ -24342,7 +29274,7 @@
 </o:Column>
 </c:Columns>
 <c:Keys>
-<o:Key Id="o959">
+<o:Key Id="o1143">
 <a:ObjectID>B035640A-4617-4763-BE8F-133FC3CBBC21</a:ObjectID>
 <a:Name>Key_1</a:Name>
 <a:Code>Key_1</a:Code>
@@ -24351,26 +29283,26 @@
 <a:ModificationDate>1697435736</a:ModificationDate>
 <a:Modifier>WYH</a:Modifier>
 <c:Key.Columns>
-<o:Column Ref="o951"/>
+<o:Column Ref="o1135"/>
 </c:Key.Columns>
 </o:Key>
 </c:Keys>
 <c:PrimaryKey>
-<o:Key Ref="o959"/>
+<o:Key Ref="o1143"/>
 </c:PrimaryKey>
 </o:Table>
-<o:Table Id="o881">
+<o:Table Id="o1066">
 <a:ObjectID>AFF0C617-16FE-49C1-80E0-960625E55C81</a:ObjectID>
-<a:Name>椤剁骇璇勪环椤瑰鍛樺緱鍒嗚〃銆恇ase_evaluation_user_appraisal_item_top_his銆�</a:Name>
-<a:Code>base_evaluation_user_appraisal_item_top_his</a:Code>
+<a:Name>椤剁骇璇勪环椤瑰鍛樺緱鍒嗚〃銆恊valuation_user_appraisal_top銆�</a:Name>
+<a:Code>evaluation_user_appraisal_top</a:Code>
 <a:CreationDate>1697435736</a:CreationDate>
 <a:Creator>WYH</a:Creator>
-<a:ModificationDate>1697438513</a:ModificationDate>
+<a:ModificationDate>1697627594</a:ModificationDate>
 <a:Modifier>WYH</a:Modifier>
-<a:Comment>椤剁骇璇勪环椤瑰鍛樺緱鍒嗚〃銆恇ase_evaluation_user_appraisal_item_top_his銆�</a:Comment>
+<a:Comment>椤剁骇璇勪环椤瑰鍛樺緱鍒嗚〃銆恊valuation_user_appraisal_item_top銆�</a:Comment>
 <a:TotalSavingCurrency/>
 <c:Columns>
-<o:Column Id="o960">
+<o:Column Id="o1144">
 <a:ObjectID>76868E71-5D1B-479D-A8C0-E58C64530385</a:ObjectID>
 <a:Name>ID</a:Name>
 <a:Code>id</a:Code>
@@ -24383,7 +29315,7 @@
 <a:Length>32</a:Length>
 <a:Mandatory>1</a:Mandatory>
 </o:Column>
-<o:Column Id="o961">
+<o:Column Id="o1145">
 <a:ObjectID>7C6A6419-9A8D-45EB-B228-1141E2EB229F</a:ObjectID>
 <a:Name>鎵�灞炴ā鏉縤d</a:Name>
 <a:Code>template_id</a:Code>
@@ -24395,7 +29327,7 @@
 <a:DataType>VARCHAR(32)</a:DataType>
 <a:Length>32</a:Length>
 </o:Column>
-<o:Column Id="o962">
+<o:Column Id="o1146">
 <a:ObjectID>02D2B372-5BE1-4413-8226-A604E3AD0FFB</a:ObjectID>
 <a:Name>璇勪及椤笽D</a:Name>
 <a:Code>item_id</a:Code>
@@ -24407,7 +29339,7 @@
 <a:DataType>VARCHAR(200)</a:DataType>
 <a:Length>200</a:Length>
 </o:Column>
-<o:Column Id="o963">
+<o:Column Id="o1147">
 <a:ObjectID>2CEE741E-68FF-4DEE-B404-FD1B38B52885</a:ObjectID>
 <a:Name>鍩硅鐝璱d</a:Name>
 <a:Code>class_info_id</a:Code>
@@ -24419,7 +29351,7 @@
 <a:DataType>VARCHAR(32)</a:DataType>
 <a:Length>32</a:Length>
 </o:Column>
-<o:Column Id="o964">
+<o:Column Id="o1148">
 <a:ObjectID>3DF0E832-A24F-42AF-ADE4-C577FF81929D</a:ObjectID>
 <a:Name>璇勪及浜�</a:Name>
 <a:Code>create_user_id</a:Code>
@@ -24431,7 +29363,7 @@
 <a:DataType>VARCHAR(32)</a:DataType>
 <a:Length>32</a:Length>
 </o:Column>
-<o:Column Id="o965">
+<o:Column Id="o1149">
 <a:ObjectID>F7BCC059-9F03-4B06-BE72-29A37B00C062</a:ObjectID>
 <a:Name>璇勪及鏃堕棿</a:Name>
 <a:Code>create_time</a:Code>
@@ -24443,7 +29375,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o966">
+<o:Column Id="o1150">
 <a:ObjectID>CCF4A92E-D6C0-4D23-A68B-5444B01770B4</a:ObjectID>
 <a:Name>鏄惁鍏ㄧ綉鍙傛暟</a:Name>
 <a:Code>is_defult</a:Code>
@@ -24455,7 +29387,7 @@
 <a:DataType>INT2</a:DataType>
 <a:Length>2</a:Length>
 </o:Column>
-<o:Column Id="o967">
+<o:Column Id="o1151">
 <a:ObjectID>2B8447A5-15B9-4C8C-9244-B2071D4E61AB</a:ObjectID>
 <a:Name>璇勪及椤逛笌璇剧▼鍏宠仈琛ㄣ�恇ase_evaluation_course銆�</a:Name>
 <a:Code>evaluation_course_id</a:Code>
@@ -24467,7 +29399,7 @@
 <a:DataType>VARCHAR(32)</a:DataType>
 <a:Length>32</a:Length>
 </o:Column>
-<o:Column Id="o968">
+<o:Column Id="o1152">
 <a:ObjectID>EFFB8A4D-D721-435D-9553-2CACA70F86C4</a:ObjectID>
 <a:Name>鐧惧垎鍒跺緱鍒�</a:Name>
 <a:Code>score_hundred</a:Code>
@@ -24480,7 +29412,7 @@
 <a:Length>8</a:Length>
 <a:Precision>2</a:Precision>
 </o:Column>
-<o:Column Id="o969">
+<o:Column Id="o1153">
 <a:ObjectID>CC44AA4D-4F1C-4D2E-B66A-BED6632C8438</a:ObjectID>
 <a:Name>浜斿垎鍒跺緱鍒�</a:Name>
 <a:Code>score_five</a:Code>
@@ -24495,7 +29427,7 @@
 </o:Column>
 </c:Columns>
 <c:Keys>
-<o:Key Id="o970">
+<o:Key Id="o1154">
 <a:ObjectID>76F59F6C-4E8F-4586-8A02-235461CEA22C</a:ObjectID>
 <a:Name>Key_1</a:Name>
 <a:Code>Key_1</a:Code>
@@ -24504,39 +29436,39 @@
 <a:ModificationDate>1697435736</a:ModificationDate>
 <a:Modifier>WYH</a:Modifier>
 <c:Key.Columns>
-<o:Column Ref="o960"/>
+<o:Column Ref="o1144"/>
 </c:Key.Columns>
 </o:Key>
 </c:Keys>
 <c:PrimaryKey>
-<o:Key Ref="o970"/>
+<o:Key Ref="o1154"/>
 </c:PrimaryKey>
 </o:Table>
-<o:Table Id="o883">
+<o:Table Id="o1068">
 <a:ObjectID>11A3263C-7EF1-4EAC-BE02-0F8DE8BDBCD1</a:ObjectID>
-<a:Name>瀛﹀憳璇勪及鍘嗗彶琛ㄣ�恇ase_evaluation_user_appraisal_his銆�</a:Name>
-<a:Code>base_evaluation_user_appraisal_his</a:Code>
+<a:Name>瀛﹀憳璇勪及鍘嗗彶琛ㄣ�恊valuation_user_appraisal銆�</a:Name>
+<a:Code>evaluation_user_appraisal</a:Code>
 <a:CreationDate>1697435736</a:CreationDate>
 <a:Creator>WYH</a:Creator>
-<a:ModificationDate>1697437050</a:ModificationDate>
+<a:ModificationDate>1697627567</a:ModificationDate>
 <a:Modifier>WYH</a:Modifier>
-<a:Comment>瀛﹀憳璇勪及鍘嗗彶琛ㄣ�恇ase_evaluation_user_appraisal_his銆�</a:Comment>
+<a:Comment>瀛﹀憳璇勪及鍘嗗彶琛ㄣ�恊valuation_user_appraisal銆�</a:Comment>
 <a:TotalSavingCurrency/>
 <c:Columns>
-<o:Column Id="o971">
+<o:Column Id="o1155">
 <a:ObjectID>1DC86D23-F63C-4D84-B4C8-0E2E1F63E395</a:ObjectID>
 <a:Name>ID</a:Name>
-<a:Code>ID</a:Code>
+<a:Code>id</a:Code>
 <a:CreationDate>1697435736</a:CreationDate>
 <a:Creator>WYH</a:Creator>
-<a:ModificationDate>1697435736</a:ModificationDate>
+<a:ModificationDate>1697625765</a:ModificationDate>
 <a:Modifier>WYH</a:Modifier>
 <a:Comment>ID</a:Comment>
 <a:DataType>VARCHAR(32)</a:DataType>
 <a:Length>32</a:Length>
 <a:Mandatory>1</a:Mandatory>
 </o:Column>
-<o:Column Id="o972">
+<o:Column Id="o1156">
 <a:ObjectID>4D6DBDB7-DD6D-446A-AFE4-7AB1095AF266</a:ObjectID>
 <a:Name>妯℃澘id</a:Name>
 <a:Code>template_id</a:Code>
@@ -24548,7 +29480,7 @@
 <a:DataType>VARCHAR(32)</a:DataType>
 <a:Length>32</a:Length>
 </o:Column>
-<o:Column Id="o973">
+<o:Column Id="o1157">
 <a:ObjectID>74B627DD-1F65-416B-A251-7F76B5032062</a:ObjectID>
 <a:Name>妯℃澘鍚嶇О</a:Name>
 <a:Code>template_name</a:Code>
@@ -24560,7 +29492,7 @@
 <a:DataType>VARCHAR(100)</a:DataType>
 <a:Length>100</a:Length>
 </o:Column>
-<o:Column Id="o974">
+<o:Column Id="o1158">
 <a:ObjectID>0CDF9602-EB80-4462-B423-A13E4D2077B0</a:ObjectID>
 <a:Name>鐝骇id</a:Name>
 <a:Code>class_info_id</a:Code>
@@ -24572,7 +29504,7 @@
 <a:DataType>VARCHAR(32)</a:DataType>
 <a:Length>32</a:Length>
 </o:Column>
-<o:Column Id="o975">
+<o:Column Id="o1159">
 <a:ObjectID>A5B4398D-9EAD-4732-9CF4-09F2DB4AF091</a:ObjectID>
 <a:Name>寮�濮嬫椂闂�</a:Name>
 <a:Code>start_tme</a:Code>
@@ -24584,7 +29516,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o976">
+<o:Column Id="o1160">
 <a:ObjectID>7C3B0124-9F21-42A9-849A-CBE755131451</a:ObjectID>
 <a:Name>缁撴潫鏃堕棿</a:Name>
 <a:Code>end_time</a:Code>
@@ -24596,7 +29528,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o977">
+<o:Column Id="o1161">
 <a:ObjectID>2598AEE3-6924-4AAF-9C01-4EAE3B9A62A1</a:ObjectID>
 <a:Name>瀛﹀憳id</a:Name>
 <a:Code>user_id</a:Code>
@@ -24608,7 +29540,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o978">
+<o:Column Id="o1162">
 <a:ObjectID>FA6BB453-C77D-4187-B4F5-FF2B5347975A</a:ObjectID>
 <a:Name>瀛﹀憳濮撳悕</a:Name>
 <a:Code>user_name</a:Code>
@@ -24622,7 +29554,7 @@
 </o:Column>
 </c:Columns>
 <c:Keys>
-<o:Key Id="o979">
+<o:Key Id="o1163">
 <a:ObjectID>FDC024ED-3D00-4034-B706-327F894407D2</a:ObjectID>
 <a:Name>Key_1</a:Name>
 <a:Code>Key_1</a:Code>
@@ -24631,26 +29563,26 @@
 <a:ModificationDate>1697435736</a:ModificationDate>
 <a:Modifier>WYH</a:Modifier>
 <c:Key.Columns>
-<o:Column Ref="o971"/>
+<o:Column Ref="o1155"/>
 </c:Key.Columns>
 </o:Key>
 </c:Keys>
 <c:PrimaryKey>
-<o:Key Ref="o979"/>
+<o:Key Ref="o1163"/>
 </c:PrimaryKey>
 </o:Table>
-<o:Table Id="o885">
+<o:Table Id="o1070">
 <a:ObjectID>1B96F111-BEA2-4E9F-B015-98F57F07C2A3</a:ObjectID>
-<a:Name>鐝骇璇勪及鍗曢」鍘嗗彶琛ㄣ�恇ase_evaluation_class_appraisal_item_his銆�</a:Name>
-<a:Code>base_evaluation_class_appraisal_item_his</a:Code>
+<a:Name>鐝骇璇勪及鍗曢」鍘嗗彶琛ㄣ�恊valuation_class_appraisal_item銆�</a:Name>
+<a:Code>evaluation_class_appraisal_item</a:Code>
 <a:CreationDate>1697435736</a:CreationDate>
 <a:Creator>WYH</a:Creator>
-<a:ModificationDate>1697439160</a:ModificationDate>
+<a:ModificationDate>1697627576</a:ModificationDate>
 <a:Modifier>WYH</a:Modifier>
-<a:Comment>鐝骇璇勪及鍘嗗彶琛ㄣ�恇ase_evaluation_class_appraisal_item_his銆�</a:Comment>
+<a:Comment>鐝骇璇勪及鍗曢」鍘嗗彶琛ㄣ�恊valuation_class_appraisal_item銆�</a:Comment>
 <a:TotalSavingCurrency/>
 <c:Columns>
-<o:Column Id="o980">
+<o:Column Id="o1164">
 <a:ObjectID>6DFA46A5-F484-4352-828A-A7985D0CC84A</a:ObjectID>
 <a:Name>ID</a:Name>
 <a:Code>id</a:Code>
@@ -24663,7 +29595,7 @@
 <a:Length>32</a:Length>
 <a:Mandatory>1</a:Mandatory>
 </o:Column>
-<o:Column Id="o981">
+<o:Column Id="o1165">
 <a:ObjectID>9BE9F1C6-B656-4E57-9E86-974C711C440D</a:ObjectID>
 <a:Name>鎵�灞炴ā鏉縤d</a:Name>
 <a:Code>template_id</a:Code>
@@ -24675,7 +29607,7 @@
 <a:DataType>VARCHAR(32)</a:DataType>
 <a:Length>32</a:Length>
 </o:Column>
-<o:Column Id="o982">
+<o:Column Id="o1166">
 <a:ObjectID>81893650-CACB-4631-BF3C-08EAC85760B3</a:ObjectID>
 <a:Name>璇勪及椤笽D</a:Name>
 <a:Code>item_id</a:Code>
@@ -24687,7 +29619,7 @@
 <a:DataType>VARCHAR(32)</a:DataType>
 <a:Length>32</a:Length>
 </o:Column>
-<o:Column Id="o983">
+<o:Column Id="o1167">
 <a:ObjectID>6F6E5F27-CEEB-4100-AB60-C9D626424F0D</a:ObjectID>
 <a:Name>璇勪及椤圭被鍨嬨��1锛氳瘎浼伴」   2锛氭枃鏈��</a:Name>
 <a:Code>item_type</a:Code>
@@ -24699,7 +29631,7 @@
 <a:DataType>INT2</a:DataType>
 <a:Length>2</a:Length>
 </o:Column>
-<o:Column Id="o984">
+<o:Column Id="o1168">
 <a:ObjectID>69A4C57A-0EA4-49C2-B862-F855353559DB</a:ObjectID>
 <a:Name>鍩硅鐝璱d</a:Name>
 <a:Code>class_info_id</a:Code>
@@ -24711,7 +29643,7 @@
 <a:DataType>VARCHAR(32)</a:DataType>
 <a:Length>32</a:Length>
 </o:Column>
-<o:Column Id="o985">
+<o:Column Id="o1169">
 <a:ObjectID>814EC83A-EF89-4977-BB06-0E2852F90DA4</a:ObjectID>
 <a:Name>鏄惁鍏ㄧ綉鍙傛暟</a:Name>
 <a:Code>is_default</a:Code>
@@ -24723,7 +29655,7 @@
 <a:DataType>INT2</a:DataType>
 <a:Length>2</a:Length>
 </o:Column>
-<o:Column Id="o986">
+<o:Column Id="o1170">
 <a:ObjectID>46FB54B1-35CC-479F-BDA4-6AE2068565BB</a:ObjectID>
 <a:Name>璇勪及椤逛笌璇剧▼鍏宠仈琛ㄣ�恇ase_evaluation_course銆�</a:Name>
 <a:Code>evaluation_course_id</a:Code>
@@ -24735,7 +29667,7 @@
 <a:DataType>VARCHAR(32)</a:DataType>
 <a:Length>32</a:Length>
 </o:Column>
-<o:Column Id="o987">
+<o:Column Id="o1171">
 <a:ObjectID>0EE46EFE-328A-471D-984A-96E75C04EBE0</a:ObjectID>
 <a:Name>鐧惧垎鍒跺緱鍒�</a:Name>
 <a:Code>score_hundred</a:Code>
@@ -24748,7 +29680,7 @@
 <a:Length>8</a:Length>
 <a:Precision>2</a:Precision>
 </o:Column>
-<o:Column Id="o988">
+<o:Column Id="o1172">
 <a:ObjectID>A7B5AA9E-6A0D-4703-B246-26038D1965D9</a:ObjectID>
 <a:Name>浜斿垎鍒跺緱鍒�</a:Name>
 <a:Code>score_five</a:Code>
@@ -24761,7 +29693,7 @@
 <a:Length>8</a:Length>
 <a:Precision>2</a:Precision>
 </o:Column>
-<o:Column Id="o989">
+<o:Column Id="o1173">
 <a:ObjectID>2DA0AB19-97F5-43D0-9754-38152CCF0D60</a:ObjectID>
 <a:Name>璇勪环淇℃伅锛堟枃鏈級</a:Name>
 <a:Code>appraisal_text</a:Code>
@@ -24775,7 +29707,7 @@
 </o:Column>
 </c:Columns>
 <c:Keys>
-<o:Key Id="o990">
+<o:Key Id="o1174">
 <a:ObjectID>28B27F72-9211-436B-A508-34CA8E255E6C</a:ObjectID>
 <a:Name>Key_1</a:Name>
 <a:Code>Key_1</a:Code>
@@ -24784,45 +29716,45 @@
 <a:ModificationDate>1697435736</a:ModificationDate>
 <a:Modifier>WYH</a:Modifier>
 <c:Key.Columns>
-<o:Column Ref="o980"/>
+<o:Column Ref="o1164"/>
 </c:Key.Columns>
 </o:Key>
 </c:Keys>
 <c:PrimaryKey>
-<o:Key Ref="o990"/>
+<o:Key Ref="o1174"/>
 </c:PrimaryKey>
 </o:Table>
 </c:Tables>
 <c:ChildExtendedDependencies>
-<o:ExtendedDependency Id="o866">
+<o:ExtendedDependency Id="o1051">
 <a:ObjectID>05FF9635-4DA8-47AA-8593-2ECF62FA4BBB</a:ObjectID>
 <a:CreationDate>1697435718</a:CreationDate>
 <a:Creator>WYH</a:Creator>
 <a:ModificationDate>1697435718</a:ModificationDate>
 <a:Modifier>WYH</a:Modifier>
 <c:Object1>
-<o:Table Ref="o871"/>
+<o:Table Ref="o1056"/>
 </c:Object1>
 <c:Object2>
-<o:Table Ref="o871"/>
+<o:Table Ref="o1056"/>
 </c:Object2>
 </o:ExtendedDependency>
-<o:ExtendedDependency Id="o869">
+<o:ExtendedDependency Id="o1054">
 <a:ObjectID>D574ED27-E477-4610-BF0F-FFACD9B3D9A2</a:ObjectID>
 <a:CreationDate>1697435718</a:CreationDate>
 <a:Creator>WYH</a:Creator>
 <a:ModificationDate>1697435718</a:ModificationDate>
 <a:Modifier>WYH</a:Modifier>
 <c:Object1>
-<o:Table Ref="o871"/>
+<o:Table Ref="o1056"/>
 </c:Object1>
 <c:Object2>
-<o:Table Ref="o870"/>
+<o:Table Ref="o1055"/>
 </c:Object2>
 </o:ExtendedDependency>
 </c:ChildExtendedDependencies>
 </o:Package>
-<o:Package Id="o731">
+<o:Package Id="o916">
 <a:ObjectID>C0E82C49-014B-4235-95CA-3B05241D93D2</a:ObjectID>
 <a:Name>銆愯垂鐢ㄤ俊鎭缃�佸熀鍦拌垂鐢ㄤ俊鎭�佺彮绾ц垂鐢ㄤ俊鎭��</a:Name>
 <a:Code>銆愯垂鐢ㄤ俊鎭缃�佸熀鍦拌垂鐢ㄤ俊鎭�佺彮绾ц垂鐢ㄤ俊鎭��</a:Code>
@@ -24831,7 +29763,7 @@
 <a:ModificationDate>1697436013</a:ModificationDate>
 <a:Modifier>WYH</a:Modifier>
 <c:PhysicalDiagrams>
-<o:PhysicalDiagram Id="o991">
+<o:PhysicalDiagram Id="o1175">
 <a:ObjectID>0E59E430-3C8A-417F-965D-E9B43AC65480</a:ObjectID>
 <a:Name>璐圭敤淇℃伅銆佸熀鍦拌垂鐢ㄤ俊鎭�佺彮绾ц垂鐢ㄤ俊鎭�</a:Name>
 <a:Code>璐圭敤淇℃伅銆佸熀鍦拌垂鐢ㄤ俊鎭�佺彮绾ц垂鐢ㄤ俊鎭�</a:Code>
@@ -25249,7 +30181,7 @@
 <a:PageOrientation>1</a:PageOrientation>
 <a:PaperSource>15</a:PaperSource>
 <c:Symbols>
-<o:TableSymbol Id="o992">
+<o:TableSymbol Id="o1176">
 <a:CreationDate>1697436013</a:CreationDate>
 <a:ModificationDate>1697439022</a:ModificationDate>
 <a:IconMode>-1</a:IconMode>
@@ -25273,10 +30205,10 @@
 <a:GradientEndColor>16777215</a:GradientEndColor>
 <a:ManuallyResized>1</a:ManuallyResized>
 <c:Object>
-<o:Table Ref="o993"/>
+<o:Table Ref="o1177"/>
 </c:Object>
 </o:TableSymbol>
-<o:TableSymbol Id="o994">
+<o:TableSymbol Id="o1178">
 <a:CreationDate>1697436013</a:CreationDate>
 <a:ModificationDate>1697436013</a:ModificationDate>
 <a:IconMode>-1</a:IconMode>
@@ -25300,10 +30232,10 @@
 <a:GradientEndColor>16777215</a:GradientEndColor>
 <a:ManuallyResized>1</a:ManuallyResized>
 <c:Object>
-<o:Table Ref="o995"/>
+<o:Table Ref="o1179"/>
 </c:Object>
 </o:TableSymbol>
-<o:TableSymbol Id="o996">
+<o:TableSymbol Id="o1180">
 <a:CreationDate>1697436013</a:CreationDate>
 <a:ModificationDate>1697436013</a:ModificationDate>
 <a:IconMode>-1</a:IconMode>
@@ -25327,17 +30259,17 @@
 <a:GradientEndColor>16777215</a:GradientEndColor>
 <a:ManuallyResized>1</a:ManuallyResized>
 <c:Object>
-<o:Table Ref="o997"/>
+<o:Table Ref="o1181"/>
 </c:Object>
 </o:TableSymbol>
 </c:Symbols>
 </o:PhysicalDiagram>
 </c:PhysicalDiagrams>
 <c:DefaultDiagram>
-<o:PhysicalDiagram Ref="o991"/>
+<o:PhysicalDiagram Ref="o1175"/>
 </c:DefaultDiagram>
 <c:Tables>
-<o:Table Id="o993">
+<o:Table Id="o1177">
 <a:ObjectID>297DE285-9AAB-45A9-9749-0E4E00DB7099</a:ObjectID>
 <a:Name>鍩哄湴璐圭敤淇℃伅绠$悊銆恇ase_free_manage銆�</a:Name>
 <a:Code>base_free_manage</a:Code>
@@ -25348,7 +30280,7 @@
 <a:Comment>璐圭敤淇℃伅绠$悊銆恇ase_free_manage銆�</a:Comment>
 <a:TotalSavingCurrency/>
 <c:Columns>
-<o:Column Id="o998">
+<o:Column Id="o1182">
 <a:ObjectID>C47839AC-70E3-47DF-AF95-5DC04D3B98DD</a:ObjectID>
 <a:Name>ID</a:Name>
 <a:Code>id</a:Code>
@@ -25361,7 +30293,7 @@
 <a:Length>32</a:Length>
 <a:Mandatory>1</a:Mandatory>
 </o:Column>
-<o:Column Id="o999">
+<o:Column Id="o1183">
 <a:ObjectID>7491FD4B-B05F-4F57-8FE8-261B9135B77D</a:ObjectID>
 <a:Name>璐圭敤鍚嶇О</a:Name>
 <a:Code>free_name</a:Code>
@@ -25373,7 +30305,7 @@
 <a:DataType>VARCHAR(50)</a:DataType>
 <a:Length>50</a:Length>
 </o:Column>
-<o:Column Id="o1000">
+<o:Column Id="o1184">
 <a:ObjectID>86694ACB-4064-4346-9D72-D1504318EBC2</a:ObjectID>
 <a:Name>璐圭敤鏍囧噯</a:Name>
 <a:Code>free_amount</a:Code>
@@ -25385,7 +30317,7 @@
 <a:DataType>INT4</a:DataType>
 <a:Length>4</a:Length>
 </o:Column>
-<o:Column Id="o1001">
+<o:Column Id="o1185">
 <a:ObjectID>0D0E5109-DD87-4818-9FA6-F62E3569387B</a:ObjectID>
 <a:Name>椤哄簭鍙�</a:Name>
 <a:Code>order_num</a:Code>
@@ -25397,7 +30329,7 @@
 <a:DataType>INT2</a:DataType>
 <a:Length>2</a:Length>
 </o:Column>
-<o:Column Id="o1002">
+<o:Column Id="o1186">
 <a:ObjectID>67DDEE8F-72E5-46BB-A4FC-E7BD3D4410BB</a:ObjectID>
 <a:Name>鍏ㄧ綉璐圭敤淇℃伅绠$悊銆恇ase_free_defult_manage銆慶ode</a:Name>
 <a:Code>free_code</a:Code>
@@ -25409,7 +30341,7 @@
 <a:DataType>VARCHAR(32)</a:DataType>
 <a:Length>32</a:Length>
 </o:Column>
-<o:Column Id="o1003">
+<o:Column Id="o1187">
 <a:ObjectID>263C7E27-9F07-43A3-9464-937893409ECA</a:ObjectID>
 <a:Name>鐘舵�併��0锛氬惎鐢ㄣ��1锛氱鐢ㄣ��2锛氬垹闄ゃ��</a:Name>
 <a:Code>status</a:Code>
@@ -25421,7 +30353,7 @@
 <a:DataType>INT2</a:DataType>
 <a:Length>2</a:Length>
 </o:Column>
-<o:Column Id="o1004">
+<o:Column Id="o1188">
 <a:ObjectID>36C02E99-E82D-4A02-B148-C0A0DE63D051</a:ObjectID>
 <a:Name>鎵�灞炲熀鍦癷d</a:Name>
 <a:Code>base_id</a:Code>
@@ -25433,7 +30365,7 @@
 <a:DataType>VARCHAR(32)</a:DataType>
 <a:Length>32</a:Length>
 </o:Column>
-<o:Column Id="o1005">
+<o:Column Id="o1189">
 <a:ObjectID>3C379CDA-9E5E-46E8-A944-004EEB9EA516</a:ObjectID>
 <a:Name>澶囨敞淇℃伅</a:Name>
 <a:Code>remark</a:Code>
@@ -25443,7 +30375,7 @@
 <a:Modifier>WYH</a:Modifier>
 <a:Comment>澶囨敞淇℃伅</a:Comment>
 </o:Column>
-<o:Column Id="o1006">
+<o:Column Id="o1190">
 <a:ObjectID>34359293-D42B-4C98-A599-FB1AE1E6E6DC</a:ObjectID>
 <a:Name>鍒涘缓浜�</a:Name>
 <a:Code>create_user_id</a:Code>
@@ -25455,7 +30387,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o1007">
+<o:Column Id="o1191">
 <a:ObjectID>79E9304E-F10B-4981-A016-BB069ECA247A</a:ObjectID>
 <a:Name>鍒涘缓鏃堕棿</a:Name>
 <a:Code>create_time</a:Code>
@@ -25467,7 +30399,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o1008">
+<o:Column Id="o1192">
 <a:ObjectID>34DD0DC9-BEAC-4073-99B9-A1660DD90DD7</a:ObjectID>
 <a:Name>鏇存柊浜�</a:Name>
 <a:Code>update_user_id</a:Code>
@@ -25479,7 +30411,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o1009">
+<o:Column Id="o1193">
 <a:ObjectID>CDDFB2D3-0A23-4FE9-A620-0C093A86C435</a:ObjectID>
 <a:Name>鏇存柊鏃堕棿</a:Name>
 <a:Code>update_time</a:Code>
@@ -25493,7 +30425,7 @@
 </o:Column>
 </c:Columns>
 <c:Keys>
-<o:Key Id="o1010">
+<o:Key Id="o1194">
 <a:ObjectID>EE768921-8611-4F5A-A889-BBBB30EF92E6</a:ObjectID>
 <a:Name>Key_1</a:Name>
 <a:Code>Key_1</a:Code>
@@ -25502,15 +30434,15 @@
 <a:ModificationDate>1697436013</a:ModificationDate>
 <a:Modifier>WYH</a:Modifier>
 <c:Key.Columns>
-<o:Column Ref="o998"/>
+<o:Column Ref="o1182"/>
 </c:Key.Columns>
 </o:Key>
 </c:Keys>
 <c:PrimaryKey>
-<o:Key Ref="o1010"/>
+<o:Key Ref="o1194"/>
 </c:PrimaryKey>
 </o:Table>
-<o:Table Id="o995">
+<o:Table Id="o1179">
 <a:ObjectID>3E72FD94-BA73-4E69-AD52-A681DC00BD2D</a:ObjectID>
 <a:Name>鍏ㄧ綉璐圭敤淇℃伅绠$悊銆恇ase_freet_deful_manage銆�</a:Name>
 <a:Code>base_free_defult__manage</a:Code>
@@ -25521,7 +30453,7 @@
 <a:Comment>鍏ㄧ綉璐圭敤淇℃伅绠$悊銆恇ase_freet_deful_manage銆�</a:Comment>
 <a:TotalSavingCurrency/>
 <c:Columns>
-<o:Column Id="o1011">
+<o:Column Id="o1195">
 <a:ObjectID>7772D5E7-3456-4239-B6D4-61D9FE493C10</a:ObjectID>
 <a:Name>ID</a:Name>
 <a:Code>id</a:Code>
@@ -25534,7 +30466,7 @@
 <a:Length>32</a:Length>
 <a:Mandatory>1</a:Mandatory>
 </o:Column>
-<o:Column Id="o1012">
+<o:Column Id="o1196">
 <a:ObjectID>C7CC9F0F-B214-4215-B013-C1725006137C</a:ObjectID>
 <a:Name>璐圭敤code</a:Name>
 <a:Code>free_code</a:Code>
@@ -25545,7 +30477,7 @@
 <a:Comment>璐圭敤code 鍞竴</a:Comment>
 <a:DataType>VARCHAR(0)</a:DataType>
 </o:Column>
-<o:Column Id="o1013">
+<o:Column Id="o1197">
 <a:ObjectID>706075A5-94E4-40D7-9FBB-A5B6E43EBCDC</a:ObjectID>
 <a:Name>璐圭敤鍚嶇О</a:Name>
 <a:Code>free_name</a:Code>
@@ -25557,7 +30489,7 @@
 <a:DataType>VARCHAR(50)</a:DataType>
 <a:Length>50</a:Length>
 </o:Column>
-<o:Column Id="o1014">
+<o:Column Id="o1198">
 <a:ObjectID>D72BF345-D72B-4000-89B4-1DAFD538B62A</a:ObjectID>
 <a:Name>椤哄簭鍙�</a:Name>
 <a:Code>order_num</a:Code>
@@ -25569,7 +30501,7 @@
 <a:DataType>INT2</a:DataType>
 <a:Length>2</a:Length>
 </o:Column>
-<o:Column Id="o1015">
+<o:Column Id="o1199">
 <a:ObjectID>655C8616-3D37-457D-B762-C674B3CF5F62</a:ObjectID>
 <a:Name>鐘舵�併��0锛氬惎鐢ㄣ��1锛氱鐢ㄣ��2锛氬垹闄ゃ��</a:Name>
 <a:Code>status</a:Code>
@@ -25581,7 +30513,7 @@
 <a:DataType>INT2</a:DataType>
 <a:Length>2</a:Length>
 </o:Column>
-<o:Column Id="o1016">
+<o:Column Id="o1200">
 <a:ObjectID>F217BFFC-4A28-4623-92F4-DF33E811C60D</a:ObjectID>
 <a:Name>鍒涘缓浜�</a:Name>
 <a:Code>create_user_id</a:Code>
@@ -25593,7 +30525,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o1017">
+<o:Column Id="o1201">
 <a:ObjectID>7A3F265F-0420-402E-BD2B-7C56C61D1666</a:ObjectID>
 <a:Name>鍒涘缓鏃堕棿</a:Name>
 <a:Code>create_time</a:Code>
@@ -25605,7 +30537,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o1018">
+<o:Column Id="o1202">
 <a:ObjectID>D23657C8-A822-4495-AD4A-38B264C1DB46</a:ObjectID>
 <a:Name>鏇存柊浜�</a:Name>
 <a:Code>update_user_id</a:Code>
@@ -25617,7 +30549,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o1019">
+<o:Column Id="o1203">
 <a:ObjectID>D0246745-8540-4DA1-9AB9-E7A77AA07DB5</a:ObjectID>
 <a:Name>鏇存柊鏃堕棿</a:Name>
 <a:Code>update_time</a:Code>
@@ -25631,7 +30563,7 @@
 </o:Column>
 </c:Columns>
 <c:Keys>
-<o:Key Id="o1020">
+<o:Key Id="o1204">
 <a:ObjectID>7A44DF85-231E-4287-8697-ABF9F9F6D3FD</a:ObjectID>
 <a:Name>Key_1</a:Name>
 <a:Code>Key_1</a:Code>
@@ -25640,15 +30572,15 @@
 <a:ModificationDate>1697436013</a:ModificationDate>
 <a:Modifier>WYH</a:Modifier>
 <c:Key.Columns>
-<o:Column Ref="o1011"/>
+<o:Column Ref="o1195"/>
 </c:Key.Columns>
 </o:Key>
 </c:Keys>
 <c:PrimaryKey>
-<o:Key Ref="o1020"/>
+<o:Key Ref="o1204"/>
 </c:PrimaryKey>
 </o:Table>
-<o:Table Id="o997">
+<o:Table Id="o1181">
 <a:ObjectID>A4FF591B-BF89-44F5-9812-5F5E293669CB</a:ObjectID>
 <a:Name>鍩哄湴鐝骇璐圭敤淇℃伅绠$悊銆恇ase_calss_free_manage銆�</a:Name>
 <a:Code>base_calss_free_manage</a:Code>
@@ -25659,7 +30591,7 @@
 <a:Comment>鍩哄湴鐝骇璐圭敤淇℃伅绠$悊銆恇ase_calss_free_manage銆�</a:Comment>
 <a:TotalSavingCurrency/>
 <c:Columns>
-<o:Column Id="o1021">
+<o:Column Id="o1205">
 <a:ObjectID>6160FA56-D85A-4923-B76B-D456E85CF7DC</a:ObjectID>
 <a:Name>ID</a:Name>
 <a:Code>id</a:Code>
@@ -25672,7 +30604,7 @@
 <a:Length>32</a:Length>
 <a:Mandatory>1</a:Mandatory>
 </o:Column>
-<o:Column Id="o1022">
+<o:Column Id="o1206">
 <a:ObjectID>9FFC6ABD-1D05-43A6-9845-F7AF3DC22089</a:ObjectID>
 <a:Name>璐圭敤鍚嶇О</a:Name>
 <a:Code>free_name</a:Code>
@@ -25684,7 +30616,7 @@
 <a:DataType>VARCHAR(50)</a:DataType>
 <a:Length>50</a:Length>
 </o:Column>
-<o:Column Id="o1023">
+<o:Column Id="o1207">
 <a:ObjectID>D9F0C81A-FF7F-45F8-9925-8B8E3EEACE89</a:ObjectID>
 <a:Name>璐圭敤閲戦</a:Name>
 <a:Code>free_amount</a:Code>
@@ -25696,7 +30628,7 @@
 <a:DataType>INT4</a:DataType>
 <a:Length>4</a:Length>
 </o:Column>
-<o:Column Id="o1024">
+<o:Column Id="o1208">
 <a:ObjectID>04EE66BA-5AB2-46F5-94C3-A91C38C8880C</a:ObjectID>
 <a:Name>椤哄簭鍙�</a:Name>
 <a:Code>order_num</a:Code>
@@ -25708,7 +30640,7 @@
 <a:DataType>INT2</a:DataType>
 <a:Length>2</a:Length>
 </o:Column>
-<o:Column Id="o1025">
+<o:Column Id="o1209">
 <a:ObjectID>6C6334DE-AE0C-453E-9BD5-747E73AC254A</a:ObjectID>
 <a:Name>鏄惁鍏ㄧ綉銆�1锛氭槸銆�0鍚︺��</a:Name>
 <a:Code>is_defult</a:Code>
@@ -25720,7 +30652,7 @@
 <a:DataType>INT2</a:DataType>
 <a:Length>2</a:Length>
 </o:Column>
-<o:Column Id="o1026">
+<o:Column Id="o1210">
 <a:ObjectID>4E6ABF69-070D-438C-B4BB-A3305C433F9A</a:ObjectID>
 <a:Name>鍏ㄧ綉璐圭敤code</a:Name>
 <a:Code>free_code</a:Code>
@@ -25732,7 +30664,7 @@
 <a:DataType>VARCHAR(32)</a:DataType>
 <a:Length>32</a:Length>
 </o:Column>
-<o:Column Id="o1027">
+<o:Column Id="o1211">
 <a:ObjectID>AD28D275-ACF1-40A6-AA8D-DE5526F96626</a:ObjectID>
 <a:Name>鐝骇id</a:Name>
 <a:Code>class_info_id</a:Code>
@@ -25744,7 +30676,7 @@
 <a:DataType>VARCHAR(32)</a:DataType>
 <a:Length>32</a:Length>
 </o:Column>
-<o:Column Id="o1028">
+<o:Column Id="o1212">
 <a:ObjectID>8EDA285C-5666-457D-AD8B-FC97E718124D</a:ObjectID>
 <a:Name>鍩硅澶╂暟</a:Name>
 <a:Code>class_info_day_num</a:Code>
@@ -25756,7 +30688,7 @@
 <a:DataType>INT4</a:DataType>
 <a:Length>4</a:Length>
 </o:Column>
-<o:Column Id="o1029">
+<o:Column Id="o1213">
 <a:ObjectID>2D6AEA04-9A2A-4A9A-893D-7B3054054523</a:ObjectID>
 <a:Name>鍩硅浜烘暟</a:Name>
 <a:Code>class_info_people_num</a:Code>
@@ -25768,7 +30700,7 @@
 <a:DataType>INT4</a:DataType>
 <a:Length>4</a:Length>
 </o:Column>
-<o:Column Id="o1030">
+<o:Column Id="o1214">
 <a:ObjectID>1D926F64-0B08-4C5B-89A1-249F4CF66964</a:ObjectID>
 <a:Name>鍗曢」璐圭敤鎬婚</a:Name>
 <a:Code>free_total_amount</a:Code>
@@ -25780,7 +30712,7 @@
 <a:DataType>INT4</a:DataType>
 <a:Length>4</a:Length>
 </o:Column>
-<o:Column Id="o1031">
+<o:Column Id="o1215">
 <a:ObjectID>72B014B8-8096-4195-9096-AD92656453AF</a:ObjectID>
 <a:Name>澶囨敞淇℃伅</a:Name>
 <a:Code>remark</a:Code>
@@ -25792,7 +30724,7 @@
 <a:DataType>VARCHAR(200)</a:DataType>
 <a:Length>200</a:Length>
 </o:Column>
-<o:Column Id="o1032">
+<o:Column Id="o1216">
 <a:ObjectID>13B2C1E7-28D3-4DE0-8A15-220902BF8F1C</a:ObjectID>
 <a:Name>鎵�灞炲熀鍦癷d</a:Name>
 <a:Code>base_id</a:Code>
@@ -25804,7 +30736,7 @@
 <a:DataType>VARCHAR(32)</a:DataType>
 <a:Length>32</a:Length>
 </o:Column>
-<o:Column Id="o1033">
+<o:Column Id="o1217">
 <a:ObjectID>043A360A-B7D1-487C-988C-502266052B43</a:ObjectID>
 <a:Name>鍒涘缓浜�</a:Name>
 <a:Code>create_user_id</a:Code>
@@ -25816,7 +30748,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o1034">
+<o:Column Id="o1218">
 <a:ObjectID>5B78D933-82C3-4BB6-9D44-743437C402C3</a:ObjectID>
 <a:Name>鍒涘缓鏃堕棿</a:Name>
 <a:Code>create_time</a:Code>
@@ -25828,7 +30760,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o1035">
+<o:Column Id="o1219">
 <a:ObjectID>702B69E5-4C1D-4B4C-B043-46370AE8978A</a:ObjectID>
 <a:Name>鏇存柊浜�</a:Name>
 <a:Code>update_user_id</a:Code>
@@ -25840,7 +30772,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o1036">
+<o:Column Id="o1220">
 <a:ObjectID>92E022DA-4D60-4482-978E-F19D00517968</a:ObjectID>
 <a:Name>鏇存柊鏃堕棿</a:Name>
 <a:Code>update_time</a:Code>
@@ -25854,7 +30786,7 @@
 </o:Column>
 </c:Columns>
 <c:Keys>
-<o:Key Id="o1037">
+<o:Key Id="o1221">
 <a:ObjectID>3712B019-83A7-4538-A12C-52A88E7018A2</a:ObjectID>
 <a:Name>Key_1</a:Name>
 <a:Code>Key_1</a:Code>
@@ -25863,17 +30795,17 @@
 <a:ModificationDate>1697436013</a:ModificationDate>
 <a:Modifier>WYH</a:Modifier>
 <c:Key.Columns>
-<o:Column Ref="o1021"/>
+<o:Column Ref="o1205"/>
 </c:Key.Columns>
 </o:Key>
 </c:Keys>
 <c:PrimaryKey>
-<o:Key Ref="o1037"/>
+<o:Key Ref="o1221"/>
 </c:PrimaryKey>
 </o:Table>
 </c:Tables>
 </o:Package>
-<o:Package Id="o733">
+<o:Package Id="o918">
 <a:ObjectID>508ADDA7-0722-4152-9A39-E85FDA12DD17</a:ObjectID>
 <a:Name>銆愪富鍔炲崟浣嶉�夐」銆�</a:Name>
 <a:Code>銆愪富鍔炲崟浣嶉�夐」銆�</a:Code>
@@ -25882,13 +30814,13 @@
 <a:ModificationDate>1697446021</a:ModificationDate>
 <a:Modifier>WYH</a:Modifier>
 <c:PhysicalDiagrams>
-<o:PhysicalDiagram Id="o1038">
+<o:PhysicalDiagram Id="o1222">
 <a:ObjectID>F2BEECE1-9CFA-43C5-8518-DD8304B413E6</a:ObjectID>
-<a:Name>PhysicalDiagram_1</a:Name>
-<a:Code>PhysicalDiagram_1</a:Code>
+<a:Name>涓诲姙鍗曚綅</a:Name>
+<a:Code>涓诲姙鍗曚綅</a:Code>
 <a:CreationDate>1697444948</a:CreationDate>
 <a:Creator>WYH</a:Creator>
-<a:ModificationDate>1697446021</a:ModificationDate>
+<a:ModificationDate>1697635401</a:ModificationDate>
 <a:Modifier>WYH</a:Modifier>
 <a:DisplayPreferences>[DisplayPreferences]
 
@@ -26300,11 +31232,11 @@
 <a:PageOrientation>1</a:PageOrientation>
 <a:PaperSource>15</a:PaperSource>
 <c:Symbols>
-<o:TableSymbol Id="o1039">
+<o:TableSymbol Id="o1223">
 <a:CreationDate>1697445266</a:CreationDate>
-<a:ModificationDate>1697446008</a:ModificationDate>
+<a:ModificationDate>1697634675</a:ModificationDate>
 <a:IconMode>-1</a:IconMode>
-<a:Rect>((-23803,-150), (8353,15912))</a:Rect>
+<a:Rect>((-23803,-2288), (8353,15912))</a:Rect>
 <a:AutoAdjustToText>0</a:AutoAdjustToText>
 <a:LineColor>12615680</a:LineColor>
 <a:FillColor>16570034</a:FillColor>
@@ -26324,14 +31256,14 @@
 <a:GradientEndColor>16777215</a:GradientEndColor>
 <a:ManuallyResized>1</a:ManuallyResized>
 <c:Object>
-<o:Table Ref="o1040"/>
+<o:Table Ref="o1224"/>
 </c:Object>
 </o:TableSymbol>
-<o:TableSymbol Id="o1041">
+<o:TableSymbol Id="o1225">
 <a:CreationDate>1697446021</a:CreationDate>
-<a:ModificationDate>1697446022</a:ModificationDate>
+<a:ModificationDate>1697634429</a:ModificationDate>
 <a:IconMode>-1</a:IconMode>
-<a:Rect>((-19903,-20931), (12253,-4869))</a:Rect>
+<a:Rect>((10922,-6), (43078,16056))</a:Rect>
 <a:AutoAdjustToText>0</a:AutoAdjustToText>
 <a:LineColor>12615680</a:LineColor>
 <a:FillColor>16570034</a:FillColor>
@@ -26351,28 +31283,28 @@
 <a:GradientEndColor>16777215</a:GradientEndColor>
 <a:ManuallyResized>1</a:ManuallyResized>
 <c:Object>
-<o:Table Ref="o1042"/>
+<o:Table Ref="o1226"/>
 </c:Object>
 </o:TableSymbol>
 </c:Symbols>
 </o:PhysicalDiagram>
 </c:PhysicalDiagrams>
 <c:DefaultDiagram>
-<o:PhysicalDiagram Ref="o1038"/>
+<o:PhysicalDiagram Ref="o1222"/>
 </c:DefaultDiagram>
 <c:Tables>
-<o:Table Id="o1040">
+<o:Table Id="o1224">
 <a:ObjectID>82898903-1D90-4793-82CC-7171B9E1FB27</a:ObjectID>
 <a:Name>涓诲姙鍗曚綅淇℃伅銆恇ase_organizer_info銆�</a:Name>
 <a:Code>base_organizer_info</a:Code>
 <a:CreationDate>1697445266</a:CreationDate>
 <a:Creator>WYH</a:Creator>
-<a:ModificationDate>1697445524</a:ModificationDate>
+<a:ModificationDate>1697634671</a:ModificationDate>
 <a:Modifier>WYH</a:Modifier>
 <a:Comment>涓诲姙鍗曚綅淇℃伅銆恇ase_organizer_info銆�</a:Comment>
 <a:TotalSavingCurrency/>
 <c:Columns>
-<o:Column Id="o1043">
+<o:Column Id="o1227">
 <a:ObjectID>F1775857-4D5F-452E-B359-29EC8AE19022</a:ObjectID>
 <a:Name>ID</a:Name>
 <a:Code>id</a:Code>
@@ -26385,7 +31317,7 @@
 <a:Length>32</a:Length>
 <a:Mandatory>1</a:Mandatory>
 </o:Column>
-<o:Column Id="o1044">
+<o:Column Id="o1228">
 <a:ObjectID>FB167506-87CC-47CF-AB2F-668B91FAFF85</a:ObjectID>
 <a:Name>涓诲姙鍗曚綅閫夐」key</a:Name>
 <a:Code>type_key</a:Code>
@@ -26397,7 +31329,7 @@
 <a:DataType>VARCHAR(32)</a:DataType>
 <a:Length>32</a:Length>
 </o:Column>
-<o:Column Id="o1045">
+<o:Column Id="o1229">
 <a:ObjectID>DA649620-86D4-4028-828D-284F10128AF0</a:ObjectID>
 <a:Name>涓诲姙鍗曚綅閫夐」value</a:Name>
 <a:Code>type_value</a:Code>
@@ -26409,7 +31341,7 @@
 <a:DataType>VARCHAR(50)</a:DataType>
 <a:Length>50</a:Length>
 </o:Column>
-<o:Column Id="o1046">
+<o:Column Id="o1230">
 <a:ObjectID>718A5E97-705C-48A6-A5F1-080E20194EBB</a:ObjectID>
 <a:Name>鐘舵�併��0锛氬惎鐢� 1锛氱鐢� 2锛氬垹闄� 銆�</a:Name>
 <a:Code>status</a:Code>
@@ -26421,7 +31353,31 @@
 <a:DataType>INT2</a:DataType>
 <a:Length>2</a:Length>
 </o:Column>
-<o:Column Id="o1047">
+<o:Column Id="o1231">
+<a:ObjectID>35C514AA-F9A7-4DB5-82C3-A3A5A45A5DB7</a:ObjectID>
+<a:Name>椤哄簭鍙�</a:Name>
+<a:Code>order_num</a:Code>
+<a:CreationDate>1697634460</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697634510</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>椤哄簭鍙�</a:Comment>
+<a:DataType>INT2</a:DataType>
+<a:Length>2</a:Length>
+</o:Column>
+<o:Column Id="o1232">
+<a:ObjectID>AAD12C83-5EB1-4997-BAE4-1810B04A8CC4</a:ObjectID>
+<a:Name>閫夐」璇存槑</a:Name>
+<a:Code>description</a:Code>
+<a:CreationDate>1697634613</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697634671</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>閫夐」璇存槑</a:Comment>
+<a:DataType>VARCHAR(300)</a:DataType>
+<a:Length>300</a:Length>
+</o:Column>
+<o:Column Id="o1233">
 <a:ObjectID>9A152667-D259-4D99-AD0F-C8EBA007C52A</a:ObjectID>
 <a:Name>鍒涘缓浜�</a:Name>
 <a:Code>create_user_id</a:Code>
@@ -26433,7 +31389,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o1048">
+<o:Column Id="o1234">
 <a:ObjectID>F8EF5F52-6B03-47BA-AB69-09182A87F9B5</a:ObjectID>
 <a:Name>鍒涘缓浜哄悕绉�</a:Name>
 <a:Code>create_user_name</a:Code>
@@ -26445,7 +31401,7 @@
 <a:DataType>VARCHAR(50)</a:DataType>
 <a:Length>50</a:Length>
 </o:Column>
-<o:Column Id="o1049">
+<o:Column Id="o1235">
 <a:ObjectID>30BE3ECE-9079-4328-A93F-B6193BA867A1</a:ObjectID>
 <a:Name>鍒涘缓鏃堕棿</a:Name>
 <a:Code>create_time</a:Code>
@@ -26457,7 +31413,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o1050">
+<o:Column Id="o1236">
 <a:ObjectID>B8A6F58E-2D78-4C48-9F69-9D693CBF909A</a:ObjectID>
 <a:Name>鏈�鍚庢洿鏂颁汉</a:Name>
 <a:Code>update_user_id</a:Code>
@@ -26469,7 +31425,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o1051">
+<o:Column Id="o1237">
 <a:ObjectID>CFF35765-1749-492B-9270-06CA00ACE901</a:ObjectID>
 <a:Name>鏇存柊浜哄悕绉�</a:Name>
 <a:Code>update_user_name</a:Code>
@@ -26481,7 +31437,7 @@
 <a:DataType>VARCHAR(50)</a:DataType>
 <a:Length>50</a:Length>
 </o:Column>
-<o:Column Id="o1052">
+<o:Column Id="o1238">
 <a:ObjectID>A539CB53-7961-4E1F-8537-F5480BA8D49A</a:ObjectID>
 <a:Name>鏈�鍚庢洿鏂版椂闂�</a:Name>
 <a:Code>update_time</a:Code>
@@ -26495,7 +31451,7 @@
 </o:Column>
 </c:Columns>
 <c:Keys>
-<o:Key Id="o1053">
+<o:Key Id="o1239">
 <a:ObjectID>B827DC8F-9371-4F29-8735-7AAE0781D905</a:ObjectID>
 <a:Name>Key_1</a:Name>
 <a:Code>Key_1</a:Code>
@@ -26504,26 +31460,26 @@
 <a:ModificationDate>1697445266</a:ModificationDate>
 <a:Modifier>WYH</a:Modifier>
 <c:Key.Columns>
-<o:Column Ref="o1043"/>
+<o:Column Ref="o1227"/>
 </c:Key.Columns>
 </o:Key>
 </c:Keys>
 <c:PrimaryKey>
-<o:Key Ref="o1053"/>
+<o:Key Ref="o1239"/>
 </c:PrimaryKey>
 </o:Table>
-<o:Table Id="o1042">
+<o:Table Id="o1226">
 <a:ObjectID>B5919092-77E5-4E18-A978-2994148DE52A</a:ObjectID>
 <a:Name>涓诲姙鍗曚綅淇℃伅鍏宠仈璇︽儏琛ㄣ�恇ase_organizer_detail銆�</a:Name>
 <a:Code>base_organizer_detail</a:Code>
 <a:CreationDate>1697446021</a:CreationDate>
 <a:Creator>WYH</a:Creator>
-<a:ModificationDate>1697446285</a:ModificationDate>
+<a:ModificationDate>1697634732</a:ModificationDate>
 <a:Modifier>WYH</a:Modifier>
 <a:Comment>涓诲姙鍗曚綅淇℃伅鍏宠仈璇︽儏琛ㄣ�恇ase_organizer_detail銆�</a:Comment>
 <a:TotalSavingCurrency/>
 <c:Columns>
-<o:Column Id="o1054">
+<o:Column Id="o1240">
 <a:ObjectID>5945DB25-3C0B-4247-9D6B-88E48845ED1C</a:ObjectID>
 <a:Name>ID</a:Name>
 <a:Code>id</a:Code>
@@ -26536,19 +31492,7 @@
 <a:Length>32</a:Length>
 <a:Mandatory>1</a:Mandatory>
 </o:Column>
-<o:Column Id="o1055">
-<a:ObjectID>26391B89-7F7B-4F42-9F7C-99301A41C018</a:ObjectID>
-<a:Name>鐘舵�併��0锛氬惎鐢� 1锛氱鐢� 2锛氬垹闄� 銆�</a:Name>
-<a:Code>status</a:Code>
-<a:CreationDate>1697446021</a:CreationDate>
-<a:Creator>WYH</a:Creator>
-<a:ModificationDate>1697446021</a:ModificationDate>
-<a:Modifier>WYH</a:Modifier>
-<a:Comment>鐘舵�併��0锛氬惎鐢� 1锛氱鐢� 2锛氬垹闄� 3锛氶攣瀹氥��</a:Comment>
-<a:DataType>INT2</a:DataType>
-<a:Length>2</a:Length>
-</o:Column>
-<o:Column Id="o1056">
+<o:Column Id="o1241">
 <a:ObjectID>6556F02F-A0DA-4D79-B92E-E31B40F57842</a:ObjectID>
 <a:Name>涓诲姙鍗曚綅淇℃伅銆恇ase_organizer_info銆�</a:Name>
 <a:Code>organizer_info_id</a:Code>
@@ -26560,7 +31504,7 @@
 <a:DataType>VARCHAR(32)</a:DataType>
 <a:Length>32</a:Length>
 </o:Column>
-<o:Column Id="o1057">
+<o:Column Id="o1242">
 <a:ObjectID>2EF82581-CAC3-44A1-BBD7-E272777F2591</a:ObjectID>
 <a:Name>涓氬姟鏈烘瀯銆恇ase_dept銆�</a:Name>
 <a:Code>base_dept_id</a:Code>
@@ -26574,7 +31518,7 @@
 </o:Column>
 </c:Columns>
 <c:Keys>
-<o:Key Id="o1058">
+<o:Key Id="o1243">
 <a:ObjectID>5D708F34-5508-45BA-AFC1-48308861CCAA</a:ObjectID>
 <a:Name>Key_1</a:Name>
 <a:Code>Key_1</a:Code>
@@ -26583,22 +31527,22 @@
 <a:ModificationDate>1697446021</a:ModificationDate>
 <a:Modifier>WYH</a:Modifier>
 <c:Key.Columns>
-<o:Column Ref="o1054"/>
+<o:Column Ref="o1240"/>
 </c:Key.Columns>
 </o:Key>
 </c:Keys>
 <c:PrimaryKey>
-<o:Key Ref="o1058"/>
+<o:Key Ref="o1243"/>
 </c:PrimaryKey>
 </o:Table>
 </c:Tables>
 </o:Package>
 </c:Packages>
 <c:DefaultDiagram>
-<o:PhysicalDiagram Ref="o721"/>
+<o:PhysicalDiagram Ref="o906"/>
 </c:DefaultDiagram>
 <c:Tables>
-<o:Table Id="o723">
+<o:Table Id="o908">
 <a:ObjectID>1784B3DF-6B07-4BCD-8DFB-09466ABD7D71</a:ObjectID>
 <a:Name>鑰冨嫟鐜囩鐞嗐�恇ase_attendance_rate銆�</a:Name>
 <a:Code>base_attendance_rate</a:Code>
@@ -26609,7 +31553,7 @@
 <a:Comment>鑰冨嫟鐜囩鐞嗐�恇ase_attendance_rate銆�</a:Comment>
 <a:TotalSavingCurrency/>
 <c:Columns>
-<o:Column Id="o1059">
+<o:Column Id="o1244">
 <a:ObjectID>98E91831-5539-4E51-A97E-0397FA4778FB</a:ObjectID>
 <a:Name>ID</a:Name>
 <a:Code>id</a:Code>
@@ -26622,7 +31566,7 @@
 <a:Length>32</a:Length>
 <a:Mandatory>1</a:Mandatory>
 </o:Column>
-<o:Column Id="o1060">
+<o:Column Id="o1245">
 <a:ObjectID>46EE6CD4-C450-4937-96EF-BD43E7421F50</a:ObjectID>
 <a:Name>鍩硅鐝被鍨嬨��1:绾夸笅闆嗕腑銆�2锛氱嚎涓婇泦涓��</a:Name>
 <a:Code>type_key</a:Code>
@@ -26634,7 +31578,7 @@
 <a:DataType>VARCHAR(32)</a:DataType>
 <a:Length>32</a:Length>
 </o:Column>
-<o:Column Id="o1061">
+<o:Column Id="o1246">
 <a:ObjectID>A111F5DE-112C-4F49-84A3-8478D127F9FB</a:ObjectID>
 <a:Name>鑰冨嫟鐜�</a:Name>
 <a:Code>rate_num</a:Code>
@@ -26646,7 +31590,7 @@
 <a:DataType>INT4</a:DataType>
 <a:Length>4</a:Length>
 </o:Column>
-<o:Column Id="o1062">
+<o:Column Id="o1247">
 <a:ObjectID>DCAB2C5F-48F3-446A-9EF9-DD49811F5CC6</a:ObjectID>
 <a:Name>鏄惁鍏ㄧ綉鍙傛暟銆�1锛氭槸銆�0鍚︺��</a:Name>
 <a:Code>is_default</a:Code>
@@ -26659,7 +31603,7 @@
 <a:Length>2</a:Length>
 <a:Mandatory>1</a:Mandatory>
 </o:Column>
-<o:Column Id="o1063">
+<o:Column Id="o1248">
 <a:ObjectID>C1E1DC02-68E0-485D-934E-54C890FD0DB7</a:ObjectID>
 <a:Name>鍩哄湴id</a:Name>
 <a:Code>base_id</a:Code>
@@ -26670,7 +31614,7 @@
 <a:Comment>鍩哄湴id</a:Comment>
 <a:DataType>VARCHAR(0)</a:DataType>
 </o:Column>
-<o:Column Id="o1064">
+<o:Column Id="o1249">
 <a:ObjectID>EB837488-889F-4BBF-8128-DFB6026876B3</a:ObjectID>
 <a:Name>鍒涘缓浜�</a:Name>
 <a:Code>create_user_id</a:Code>
@@ -26682,7 +31626,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o1065">
+<o:Column Id="o1250">
 <a:ObjectID>B3F0803D-BE46-4129-9888-58318BE37A95</a:ObjectID>
 <a:Name>鍒涘缓鏃堕棿</a:Name>
 <a:Code>create_time</a:Code>
@@ -26694,7 +31638,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o1066">
+<o:Column Id="o1251">
 <a:ObjectID>09C8153E-8E7B-4AE9-B87E-1F8B20133514</a:ObjectID>
 <a:Name>鏇存柊浜�</a:Name>
 <a:Code>update_user_id</a:Code>
@@ -26706,7 +31650,7 @@
 <a:DataType>INT8</a:DataType>
 <a:Length>8</a:Length>
 </o:Column>
-<o:Column Id="o1067">
+<o:Column Id="o1252">
 <a:ObjectID>DCEF35A1-74A9-4281-9F72-EB44563D0B85</a:ObjectID>
 <a:Name>鏇存柊鏃堕棿</a:Name>
 <a:Code>update_time</a:Code>
@@ -26720,7 +31664,7 @@
 </o:Column>
 </c:Columns>
 <c:Keys>
-<o:Key Id="o1068">
+<o:Key Id="o1253">
 <a:ObjectID>D8D26317-E3A5-4CB4-A67C-059CC3F9F578</a:ObjectID>
 <a:Name>Key_1</a:Name>
 <a:Code>Key_1</a:Code>
@@ -26729,22 +31673,2438 @@
 <a:ModificationDate>1697271770</a:ModificationDate>
 <a:Modifier>WYH</a:Modifier>
 <c:Key.Columns>
-<o:Column Ref="o1059"/>
+<o:Column Ref="o1244"/>
 </c:Key.Columns>
 </o:Key>
 </c:Keys>
 <c:PrimaryKey>
-<o:Key Ref="o1068"/>
+<o:Key Ref="o1253"/>
 </c:PrimaryKey>
 </o:Table>
 </c:Tables>
+</o:Package>
+<o:Package Id="o1254">
+<a:ObjectID>D09CA59A-86DB-41F3-B6F1-75CBB87B0219</a:ObjectID>
+<a:Name>鏁欏璧勬簮</a:Name>
+<a:Code>鏁欏璧勬簮</a:Code>
+<a:CreationDate>1697635423</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697635517</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<c:PhysicalDiagrams>
+<o:PhysicalDiagram Id="o1255">
+<a:ObjectID>D10B9500-2AD2-4F6C-B197-8716C3CA7232</a:ObjectID>
+<a:Name>PhysicalDiagram_1</a:Name>
+<a:Code>PhysicalDiagram_1</a:Code>
+<a:CreationDate>1697635423</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697635439</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:DisplayPreferences>[DisplayPreferences]
+
+[DisplayPreferences\PDM]
+
+[DisplayPreferences\General]
+Adjust to text=Yes
+Snap Grid=No
+Constrain Labels=Yes
+Display Grid=No
+Show Page Delimiter=Yes
+Grid size=0
+Graphic unit=2
+Window color=255, 255, 255
+Background image=
+Background mode=8
+Watermark image=
+Watermark mode=8
+Show watermark on screen=No
+Gradient mode=0
+Gradient end color=255, 255, 255
+Show Swimlane=No
+SwimlaneVert=Yes
+TreeVert=No
+CompDark=0
+
+[DisplayPreferences\Object]
+Mode=0
+Trunc Length=80
+Word Length=80
+Word Text=!&quot;&quot;#$%&amp;&#39;()*+,-./:;&lt;=&gt;?@[\]^_`{|}~
+Shortcut IntIcon=Yes
+Shortcut IntLoct=Yes
+Shortcut IntFullPath=No
+Shortcut IntLastPackage=Yes
+Shortcut ExtIcon=Yes
+Shortcut ExtLoct=No
+Shortcut ExtFullPath=No
+Shortcut ExtLastPackage=Yes
+Shortcut ExtIncludeModl=Yes
+EObjShowStrn=Yes
+ExtendedObject.Comment=No
+ExtendedObject.IconPicture=No
+ExtendedObject_SymbolLayout=
+ELnkShowStrn=Yes
+ELnkShowName=Yes
+ExtendedLink_SymbolLayout=
+FileObject.Stereotype=No
+FileObject.DisplayName=Yes
+FileObject.LocationOrName=No
+FileObject.IconPicture=No
+FileObject.IconMode=Yes
+FileObject_SymbolLayout=
+PckgShowStrn=Yes
+Package.Comment=No
+Package.IconPicture=No
+Package_SymbolLayout=
+Display Model Version=Yes
+Table.Stereotype=Yes
+Table.DisplayName=Yes
+Table.OwnerDisplayName=No
+Table.Columns=Yes
+Table.Columns._Filter=&quot;All Columns&quot; PDMCOLNALL
+Table.Columns._Columns=Stereotype DataType KeyIndicator
+Table.Columns._Limit=-5
+Table.Keys=No
+Table.Keys._Columns=Stereotype Indicator
+Table.Indexes=No
+Table.Indexes._Columns=Stereotype
+Table.Triggers=No
+Table.Triggers._Columns=Stereotype
+Table.Comment=No
+Table.IconPicture=No
+Table_SymbolLayout=&lt;Form&gt;[CRLF] &lt;StandardAttribute Name=&quot;Stereotype&quot; Attribute=&quot;Stereotype&quot; Prefix=&quot;&amp;lt;&amp;lt;&quot; Suffix=&quot;&amp;gt;&amp;gt;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;ExclusiveChoice Name=&quot;Exclusive Choice&quot; Mandatory=&quot;Yes&quot; Display=&quot;HorizontalRadios&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Name&quot; Attribute=&quot;DisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;StandardAttribute Name=&quot;Owner and Name&quot; Attribute=&quot;OwnerDisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/ExclusiveChoice&gt;[CRLF] &lt;Separator Name=&quot;Separator&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Columns&quot; Collection=&quot;Columns&quot; Columns=&quot;Stereotype No\r\nDisplayName Yes\r\nDataType No\r\nSymbolDataType No &amp;quot;Domain or Data type&amp;quot;\r\nDomain No\r\nKeyIndicator No\r\nIndexIndicator No\r\nNullStatus No&quot; Filters=&quot;&amp;quot;All Columns&amp;quot;  PDMCOLNALL &amp;quot;&amp;quot;\r\n&amp;quot;PK Columns&amp;quot;  PDMCOLNPK &amp;quot;PRIM \&amp;quot;TRUE\&amp;quot; TRUE&amp;quot;\r\n&amp;quot;Key Columns&amp;quot;  PDMCOLNKEY &amp;quot;KEYS \&amp;quot;TRUE\&amp;quot; TRUE&amp;quot;&quot; HasLimit=&quot;Yes&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Keys&quot; Collection=&quot;Keys&quot; Columns=&quot;Stereotype No\r\nDisplayName Yes\r\nIndicator No&quot; HasLimit=&quot;No&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Indexes&quot; Collection=&quot;Indexes&quot; Columns=&quot;Stereotype No\r\nDisplayName Yes\r\nIndicator No&quot; HasLimit=&quot;No&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Triggers&quot; Collection=&quot;Triggers&quot; Columns=&quot;Stereotype No\r\nDisplayName Yes&quot; HasLimit=&quot;No&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Comment&quot; Attribute=&quot;Comment&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;LEFT&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Icon&quot; Attribute=&quot;IconPicture&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;Yes&quot; /&gt;[CRLF]&lt;/Form&gt;
+View.Stereotype=Yes
+View.DisplayName=Yes
+View.OwnerDisplayName=No
+View.Columns=Yes
+View.Columns._Columns=DisplayName
+View.Columns._Limit=-5
+View.TemporaryVTables=Yes
+View.Indexes=No
+View.Comment=No
+View.IconPicture=No
+View_SymbolLayout=&lt;Form&gt;[CRLF] &lt;StandardAttribute Name=&quot;Stereotype&quot; Attribute=&quot;Stereotype&quot; Prefix=&quot;&amp;lt;&amp;lt;&quot; Suffix=&quot;&amp;gt;&amp;gt;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;ExclusiveChoice Name=&quot;Exclusive Choice&quot; Mandatory=&quot;Yes&quot; Display=&quot;HorizontalRadios&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Name&quot; Attribute=&quot;DisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;StandardAttribute Name=&quot;Owner and Name&quot; Attribute=&quot;OwnerDisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/ExclusiveChoice&gt;[CRLF] &lt;Separator Name=&quot;Separator&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Columns&quot; Collection=&quot;Columns&quot; Columns=&quot;DisplayName No\r\nExpression No\r\nDataType No\r\nSymbolDataType No &amp;quot;Domain or Data type&amp;quot;\r\nIndexIndicator No&quot; HasLimit=&quot;Yes&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Tables&quot; Collection=&quot;TemporaryVTables&quot; Columns=&quot;Name Yes&quot; HasLimit=&quot;No&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Indexes&quot; Collection=&quot;Indexes&quot; Columns=&quot;DisplayName Yes&quot; HasLimit=&quot;No&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Comment&quot; Attribute=&quot;Comment&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;LEFT&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Icon&quot; Attribute=&quot;IconPicture&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;Yes&quot; /&gt;[CRLF]&lt;/Form&gt;
+Procedure.Stereotype=No
+Procedure.DisplayName=Yes
+Procedure.OwnerDisplayName=No
+Procedure.Comment=No
+Procedure.IconPicture=No
+Procedure_SymbolLayout=&lt;Form&gt;[CRLF] &lt;StandardAttribute Name=&quot;Stereotype&quot; Attribute=&quot;Stereotype&quot; Prefix=&quot;&amp;lt;&amp;lt;&quot; Suffix=&quot;&amp;gt;&amp;gt;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;ExclusiveChoice Name=&quot;Exclusive Choice&quot; Mandatory=&quot;Yes&quot; Display=&quot;HorizontalRadios&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Name&quot; Attribute=&quot;DisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;StandardAttribute Name=&quot;Owner and Name&quot; Attribute=&quot;OwnerDisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/ExclusiveChoice&gt;[CRLF] &lt;Separator Name=&quot;Separator&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Comment&quot; Attribute=&quot;Comment&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;LEFT&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Icon&quot; Attribute=&quot;IconPicture&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;Yes&quot; /&gt;[CRLF]&lt;/Form&gt;
+Reference.Cardinality=No
+Reference.ImplementationType=No
+Reference.ChildRole=Yes
+Reference.Stereotype=Yes
+Reference.DisplayName=No
+Reference.ForeignKeyConstraintName=Yes
+Reference.JoinExpression=No
+Reference.Integrity=No
+Reference.ParentRole=Yes
+Reference_SymbolLayout=&lt;Form&gt;[CRLF] &lt;Form Name=&quot;Source&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Cardinality&quot; Attribute=&quot;Cardinality&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;StandardAttribute Name=&quot;Implementation&quot; Attribute=&quot;ImplementationType&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;StandardAttribute Name=&quot;Child Role&quot; Attribute=&quot;ChildRole&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/Form&gt;[CRLF] &lt;Form Name=&quot;Center&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Stereotype&quot; Attribute=&quot;Stereotype&quot; Prefix=&quot;&amp;lt;&amp;lt;&quot; Suffix=&quot;&amp;gt;&amp;gt;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;ExclusiveChoice Name=&quot;Exclusive Choice&quot; Mandatory=&quot;No&quot; Display=&quot;HorizontalRadios&quot; &gt;[CRLF]   &lt;StandardAttribute Name=&quot;Name&quot; Attribute=&quot;DisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]   &lt;StandardAttribute Name=&quot;Cons&amp;amp;traint Name&quot; Attribute=&quot;ForeignKeyConstraintName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;Cons&amp;amp;traint Name&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]   &lt;StandardAttribute Name=&quot;Join&quot; Attribute=&quot;JoinExpression&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;Join&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;/ExclusiveChoice&gt;[CRLF]  &lt;StandardAttribute Name=&quot;Referential integrity&quot; Attribute=&quot;Integrity&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;Referential integrity&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/Form&gt;[CRLF] &lt;Form Name=&quot;Destination&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Parent Role&quot; Attribute=&quot;ParentRole&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/Form&gt;[CRLF]&lt;/Form&gt;
+ViewReference.ChildRole=Yes
+ViewReference.Stereotype=Yes
+ViewReference.DisplayName=No
+ViewReference.JoinExpression=No
+ViewReference.ParentRole=Yes
+ViewReference_SymbolLayout=&lt;Form&gt;[CRLF] &lt;Form Name=&quot;Source&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Child Role&quot; Attribute=&quot;ChildRole&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/Form&gt;[CRLF] &lt;Form Name=&quot;Center&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Stereotype&quot; Attribute=&quot;Stereotype&quot; Prefix=&quot;&amp;lt;&amp;lt;&quot; Suffix=&quot;&amp;gt;&amp;gt;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;ExclusiveChoice Name=&quot;Exclusive Choice&quot; Mandatory=&quot;No&quot; Display=&quot;HorizontalRadios&quot; &gt;[CRLF]   &lt;StandardAttribute Name=&quot;Name&quot; Attribute=&quot;DisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]   &lt;StandardAttribute Name=&quot;Join Expression&quot; Attribute=&quot;JoinExpression&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;/ExclusiveChoice&gt;[CRLF] &lt;/Form&gt;[CRLF] &lt;Form Name=&quot;Destination&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Parent Role&quot; Attribute=&quot;ParentRole&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/Form&gt;[CRLF]&lt;/Form&gt;
+
+[DisplayPreferences\Symbol]
+
+[DisplayPreferences\Symbol\FRMEOBJ]
+STRNFont=Arial,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial,8,N
+DISPNAMEFont color=0, 0, 0
+LABLFont=Arial,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=6000
+Height=2000
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=64
+Brush gradient color=192 192 192
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 255 128 128
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\FRMELNK]
+CENTERFont=Arial,8,N
+CENTERFont color=0, 0, 0
+Line style=2
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 128 255
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\FILO]
+OBJSTRNFont=鏂板畫浣�,8,N
+OBJSTRNFont color=0, 0, 0
+DISPNAMEFont=鏂板畫浣�,8,N
+DISPNAMEFont color=0, 0, 0
+LCNMFont=鏂板畫浣�,8,N
+LCNMFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=Yes
+Keep center=Yes
+Keep size=No
+Width=2400
+Height=2400
+Brush color=255 255 255
+Fill Color=No
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 0 255
+Shadow color=192 192 192
+Shadow=-1
+
+[DisplayPreferences\Symbol\PDMPCKG]
+STRNFont=Arial,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial,8,N
+DISPNAMEFont color=0, 0, 0
+LABLFont=Arial,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4800
+Height=3600
+Brush color=255 255 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 178 178 178
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\TABL]
+STRNFont=鏂板畫浣�,20,N
+STRNFont color=0 0 0
+DISPNAMEFont=鏂板畫浣�,8,N
+DISPNAMEFont color=0 0 0
+OWNRDISPNAMEFont=鏂板畫浣�,8,N
+OWNRDISPNAMEFont color=0 0 0
+ColumnsFont=鏂板畫浣�,8,N
+ColumnsFont color=0 0 0
+TablePkColumnsFont=鏂板畫浣�,8,U
+TablePkColumnsFont color=0 0 0
+TableFkColumnsFont=鏂板畫浣�,8,N
+TableFkColumnsFont color=0 0 0
+KeysFont=鏂板畫浣�,8,N
+KeysFont color=0 0 0
+IndexesFont=鏂板畫浣�,8,N
+IndexesFont color=0 0 0
+TriggersFont=鏂板畫浣�,8,N
+TriggersFont color=0 0 0
+LABLFont=鏂板畫浣�,8,N
+LABLFont color=0 0 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=15000
+Height=7500
+Brush color=178 214 252
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\VIEW]
+STRNFont=Arial,8,N
+STRNFont color=0 0 0
+DISPNAMEFont=Arial,8,N
+DISPNAMEFont color=0 0 0
+OWNRDISPNAMEFont=鏂板畫浣�,8,N
+OWNRDISPNAMEFont color=0, 0, 0
+ColumnsFont=Arial,8,N
+ColumnsFont color=0 0 0
+TablePkColumnsFont=鏂板畫浣�,8,U
+TablePkColumnsFont color=0, 0, 0
+TableFkColumnsFont=鏂板畫浣�,8,N
+TableFkColumnsFont color=0, 0, 0
+TemporaryVTablesFont=Arial,8,N
+TemporaryVTablesFont color=0 0 0
+IndexesFont=Arial,8,N
+IndexesFont color=0 0 0
+LABLFont=Arial,8,N
+LABLFont color=0 0 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4800
+Height=4000
+Brush color=233 202 131
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 128 128
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\PROC]
+STRNFont=Arial,8,N
+STRNFont color=0 0 0
+DISPNAMEFont=Arial,8,N
+DISPNAMEFont color=0 0 0
+OWNRDISPNAMEFont=鏂板畫浣�,8,N
+OWNRDISPNAMEFont color=0, 0, 0
+LABLFont=Arial,8,N
+LABLFont color=0 0 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4000
+Height=1000
+Brush color=255 255 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 108 0
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\REFR]
+SOURCEFont=鏂板畫浣�,8,N
+SOURCEFont color=0, 0, 0
+CENTERFont=鏂板畫浣�,8,N
+CENTERFont color=0, 0, 0
+DESTINATIONFont=鏂板畫浣�,8,N
+DESTINATIONFont color=0, 0, 0
+Line style=2
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 0 64
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\VREF]
+SOURCEFont=鏂板畫浣�,8,N
+SOURCEFont color=0, 0, 0
+CENTERFont=鏂板畫浣�,8,N
+CENTERFont color=0, 0, 0
+DESTINATIONFont=鏂板畫浣�,8,N
+DESTINATIONFont color=0, 0, 0
+Line style=2
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 0 64
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\USRDEPD]
+OBJXSTRFont=Arial,8,N
+OBJXSTRFont color=0 0 0
+Line style=0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=2 0 128 0 64
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\Free Symbol]
+Free TextFont=Arial,8,N
+Free TextFont color=0 0 0
+Line style=2
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 64 0
+Shadow color=192 192 192
+Shadow=0</a:DisplayPreferences>
+<a:PaperSize>(8268, 11693)</a:PaperSize>
+<a:PageMargins>((315,354), (433,354))</a:PageMargins>
+<a:PageOrientation>1</a:PageOrientation>
+<a:PaperSource>15</a:PaperSource>
+</o:PhysicalDiagram>
+</c:PhysicalDiagrams>
+<c:Packages>
+<o:Package Id="o1256">
+<a:ObjectID>6000D43F-BB6B-41C4-854D-1E1C05680CA0</a:ObjectID>
+<a:Name>璇剧▼绠$悊</a:Name>
+<a:Code>璇剧▼绠$悊</a:Code>
+<a:CreationDate>1697635462</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697636433</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<c:PhysicalDiagrams>
+<o:PhysicalDiagram Id="o1257">
+<a:ObjectID>E1FB8932-8092-40B9-A3C2-E3C8AECC0C8F</a:ObjectID>
+<a:Name>PhysicalDiagram_1</a:Name>
+<a:Code>PhysicalDiagram_1</a:Code>
+<a:CreationDate>1697635462</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697636433</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:DisplayPreferences>[DisplayPreferences]
+
+[DisplayPreferences\PDM]
+
+[DisplayPreferences\General]
+Adjust to text=Yes
+Snap Grid=No
+Constrain Labels=Yes
+Display Grid=No
+Show Page Delimiter=Yes
+Grid size=0
+Graphic unit=2
+Window color=255, 255, 255
+Background image=
+Background mode=8
+Watermark image=
+Watermark mode=8
+Show watermark on screen=No
+Gradient mode=0
+Gradient end color=255, 255, 255
+Show Swimlane=No
+SwimlaneVert=Yes
+TreeVert=No
+CompDark=0
+
+[DisplayPreferences\Object]
+Mode=0
+Trunc Length=80
+Word Length=80
+Word Text=!&quot;&quot;#$%&amp;&#39;()*+,-./:;&lt;=&gt;?@[\]^_`{|}~
+Shortcut IntIcon=Yes
+Shortcut IntLoct=Yes
+Shortcut IntFullPath=No
+Shortcut IntLastPackage=Yes
+Shortcut ExtIcon=Yes
+Shortcut ExtLoct=No
+Shortcut ExtFullPath=No
+Shortcut ExtLastPackage=Yes
+Shortcut ExtIncludeModl=Yes
+EObjShowStrn=Yes
+ExtendedObject.Comment=No
+ExtendedObject.IconPicture=No
+ExtendedObject_SymbolLayout=
+ELnkShowStrn=Yes
+ELnkShowName=Yes
+ExtendedLink_SymbolLayout=
+FileObject.Stereotype=No
+FileObject.DisplayName=Yes
+FileObject.LocationOrName=No
+FileObject.IconPicture=No
+FileObject.IconMode=Yes
+FileObject_SymbolLayout=
+PckgShowStrn=Yes
+Package.Comment=No
+Package.IconPicture=No
+Package_SymbolLayout=
+Display Model Version=Yes
+Table.Stereotype=Yes
+Table.DisplayName=Yes
+Table.OwnerDisplayName=No
+Table.Columns=Yes
+Table.Columns._Filter=&quot;All Columns&quot; PDMCOLNALL
+Table.Columns._Columns=Stereotype DataType KeyIndicator
+Table.Columns._Limit=-5
+Table.Keys=No
+Table.Keys._Columns=Stereotype Indicator
+Table.Indexes=No
+Table.Indexes._Columns=Stereotype
+Table.Triggers=No
+Table.Triggers._Columns=Stereotype
+Table.Comment=No
+Table.IconPicture=No
+Table_SymbolLayout=&lt;Form&gt;[CRLF] &lt;StandardAttribute Name=&quot;Stereotype&quot; Attribute=&quot;Stereotype&quot; Prefix=&quot;&amp;lt;&amp;lt;&quot; Suffix=&quot;&amp;gt;&amp;gt;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;ExclusiveChoice Name=&quot;Exclusive Choice&quot; Mandatory=&quot;Yes&quot; Display=&quot;HorizontalRadios&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Name&quot; Attribute=&quot;DisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;StandardAttribute Name=&quot;Owner and Name&quot; Attribute=&quot;OwnerDisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/ExclusiveChoice&gt;[CRLF] &lt;Separator Name=&quot;Separator&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Columns&quot; Collection=&quot;Columns&quot; Columns=&quot;Stereotype No\r\nDisplayName Yes\r\nDataType No\r\nSymbolDataType No &amp;quot;Domain or Data type&amp;quot;\r\nDomain No\r\nKeyIndicator No\r\nIndexIndicator No\r\nNullStatus No&quot; Filters=&quot;&amp;quot;All Columns&amp;quot;  PDMCOLNALL &amp;quot;&amp;quot;\r\n&amp;quot;PK Columns&amp;quot;  PDMCOLNPK &amp;quot;PRIM \&amp;quot;TRUE\&amp;quot; TRUE&amp;quot;\r\n&amp;quot;Key Columns&amp;quot;  PDMCOLNKEY &amp;quot;KEYS \&amp;quot;TRUE\&amp;quot; TRUE&amp;quot;&quot; HasLimit=&quot;Yes&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Keys&quot; Collection=&quot;Keys&quot; Columns=&quot;Stereotype No\r\nDisplayName Yes\r\nIndicator No&quot; HasLimit=&quot;No&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Indexes&quot; Collection=&quot;Indexes&quot; Columns=&quot;Stereotype No\r\nDisplayName Yes\r\nIndicator No&quot; HasLimit=&quot;No&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Triggers&quot; Collection=&quot;Triggers&quot; Columns=&quot;Stereotype No\r\nDisplayName Yes&quot; HasLimit=&quot;No&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Comment&quot; Attribute=&quot;Comment&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;LEFT&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Icon&quot; Attribute=&quot;IconPicture&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;Yes&quot; /&gt;[CRLF]&lt;/Form&gt;
+View.Stereotype=Yes
+View.DisplayName=Yes
+View.OwnerDisplayName=No
+View.Columns=Yes
+View.Columns._Columns=DisplayName
+View.Columns._Limit=-5
+View.TemporaryVTables=Yes
+View.Indexes=No
+View.Comment=No
+View.IconPicture=No
+View_SymbolLayout=&lt;Form&gt;[CRLF] &lt;StandardAttribute Name=&quot;Stereotype&quot; Attribute=&quot;Stereotype&quot; Prefix=&quot;&amp;lt;&amp;lt;&quot; Suffix=&quot;&amp;gt;&amp;gt;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;ExclusiveChoice Name=&quot;Exclusive Choice&quot; Mandatory=&quot;Yes&quot; Display=&quot;HorizontalRadios&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Name&quot; Attribute=&quot;DisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;StandardAttribute Name=&quot;Owner and Name&quot; Attribute=&quot;OwnerDisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/ExclusiveChoice&gt;[CRLF] &lt;Separator Name=&quot;Separator&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Columns&quot; Collection=&quot;Columns&quot; Columns=&quot;DisplayName No\r\nExpression No\r\nDataType No\r\nSymbolDataType No &amp;quot;Domain or Data type&amp;quot;\r\nIndexIndicator No&quot; HasLimit=&quot;Yes&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Tables&quot; Collection=&quot;TemporaryVTables&quot; Columns=&quot;Name Yes&quot; HasLimit=&quot;No&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Indexes&quot; Collection=&quot;Indexes&quot; Columns=&quot;DisplayName Yes&quot; HasLimit=&quot;No&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Comment&quot; Attribute=&quot;Comment&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;LEFT&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Icon&quot; Attribute=&quot;IconPicture&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;Yes&quot; /&gt;[CRLF]&lt;/Form&gt;
+Procedure.Stereotype=No
+Procedure.DisplayName=Yes
+Procedure.OwnerDisplayName=No
+Procedure.Comment=No
+Procedure.IconPicture=No
+Procedure_SymbolLayout=&lt;Form&gt;[CRLF] &lt;StandardAttribute Name=&quot;Stereotype&quot; Attribute=&quot;Stereotype&quot; Prefix=&quot;&amp;lt;&amp;lt;&quot; Suffix=&quot;&amp;gt;&amp;gt;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;ExclusiveChoice Name=&quot;Exclusive Choice&quot; Mandatory=&quot;Yes&quot; Display=&quot;HorizontalRadios&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Name&quot; Attribute=&quot;DisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;StandardAttribute Name=&quot;Owner and Name&quot; Attribute=&quot;OwnerDisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/ExclusiveChoice&gt;[CRLF] &lt;Separator Name=&quot;Separator&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Comment&quot; Attribute=&quot;Comment&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;LEFT&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Icon&quot; Attribute=&quot;IconPicture&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;Yes&quot; /&gt;[CRLF]&lt;/Form&gt;
+Reference.Cardinality=No
+Reference.ImplementationType=No
+Reference.ChildRole=Yes
+Reference.Stereotype=Yes
+Reference.DisplayName=No
+Reference.ForeignKeyConstraintName=Yes
+Reference.JoinExpression=No
+Reference.Integrity=No
+Reference.ParentRole=Yes
+Reference_SymbolLayout=&lt;Form&gt;[CRLF] &lt;Form Name=&quot;Source&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Cardinality&quot; Attribute=&quot;Cardinality&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;StandardAttribute Name=&quot;Implementation&quot; Attribute=&quot;ImplementationType&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;StandardAttribute Name=&quot;Child Role&quot; Attribute=&quot;ChildRole&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/Form&gt;[CRLF] &lt;Form Name=&quot;Center&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Stereotype&quot; Attribute=&quot;Stereotype&quot; Prefix=&quot;&amp;lt;&amp;lt;&quot; Suffix=&quot;&amp;gt;&amp;gt;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;ExclusiveChoice Name=&quot;Exclusive Choice&quot; Mandatory=&quot;No&quot; Display=&quot;HorizontalRadios&quot; &gt;[CRLF]   &lt;StandardAttribute Name=&quot;Name&quot; Attribute=&quot;DisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]   &lt;StandardAttribute Name=&quot;Cons&amp;amp;traint Name&quot; Attribute=&quot;ForeignKeyConstraintName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;Cons&amp;amp;traint Name&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]   &lt;StandardAttribute Name=&quot;Join&quot; Attribute=&quot;JoinExpression&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;Join&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;/ExclusiveChoice&gt;[CRLF]  &lt;StandardAttribute Name=&quot;Referential integrity&quot; Attribute=&quot;Integrity&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;Referential integrity&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/Form&gt;[CRLF] &lt;Form Name=&quot;Destination&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Parent Role&quot; Attribute=&quot;ParentRole&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/Form&gt;[CRLF]&lt;/Form&gt;
+ViewReference.ChildRole=Yes
+ViewReference.Stereotype=Yes
+ViewReference.DisplayName=No
+ViewReference.JoinExpression=No
+ViewReference.ParentRole=Yes
+ViewReference_SymbolLayout=&lt;Form&gt;[CRLF] &lt;Form Name=&quot;Source&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Child Role&quot; Attribute=&quot;ChildRole&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/Form&gt;[CRLF] &lt;Form Name=&quot;Center&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Stereotype&quot; Attribute=&quot;Stereotype&quot; Prefix=&quot;&amp;lt;&amp;lt;&quot; Suffix=&quot;&amp;gt;&amp;gt;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;ExclusiveChoice Name=&quot;Exclusive Choice&quot; Mandatory=&quot;No&quot; Display=&quot;HorizontalRadios&quot; &gt;[CRLF]   &lt;StandardAttribute Name=&quot;Name&quot; Attribute=&quot;DisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]   &lt;StandardAttribute Name=&quot;Join Expression&quot; Attribute=&quot;JoinExpression&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;/ExclusiveChoice&gt;[CRLF] &lt;/Form&gt;[CRLF] &lt;Form Name=&quot;Destination&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Parent Role&quot; Attribute=&quot;ParentRole&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/Form&gt;[CRLF]&lt;/Form&gt;
+
+[DisplayPreferences\Symbol]
+
+[DisplayPreferences\Symbol\FRMEOBJ]
+STRNFont=Arial,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial,8,N
+DISPNAMEFont color=0, 0, 0
+LABLFont=Arial,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=6000
+Height=2000
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=64
+Brush gradient color=192 192 192
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 255 128 128
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\FRMELNK]
+CENTERFont=Arial,8,N
+CENTERFont color=0, 0, 0
+Line style=2
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 128 255
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\FILO]
+OBJSTRNFont=鏂板畫浣�,8,N
+OBJSTRNFont color=0, 0, 0
+DISPNAMEFont=鏂板畫浣�,8,N
+DISPNAMEFont color=0, 0, 0
+LCNMFont=鏂板畫浣�,8,N
+LCNMFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=Yes
+Keep center=Yes
+Keep size=No
+Width=2400
+Height=2400
+Brush color=255 255 255
+Fill Color=No
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 0 255
+Shadow color=192 192 192
+Shadow=-1
+
+[DisplayPreferences\Symbol\PDMPCKG]
+STRNFont=Arial,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial,8,N
+DISPNAMEFont color=0, 0, 0
+LABLFont=Arial,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4800
+Height=3600
+Brush color=255 255 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 178 178 178
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\TABL]
+STRNFont=鏂板畫浣�,20,N
+STRNFont color=0 0 0
+DISPNAMEFont=鏂板畫浣�,8,N
+DISPNAMEFont color=0 0 0
+OWNRDISPNAMEFont=鏂板畫浣�,8,N
+OWNRDISPNAMEFont color=0 0 0
+ColumnsFont=鏂板畫浣�,8,N
+ColumnsFont color=0 0 0
+TablePkColumnsFont=鏂板畫浣�,8,U
+TablePkColumnsFont color=0 0 0
+TableFkColumnsFont=鏂板畫浣�,8,N
+TableFkColumnsFont color=0 0 0
+KeysFont=鏂板畫浣�,8,N
+KeysFont color=0 0 0
+IndexesFont=鏂板畫浣�,8,N
+IndexesFont color=0 0 0
+TriggersFont=鏂板畫浣�,8,N
+TriggersFont color=0 0 0
+LABLFont=鏂板畫浣�,8,N
+LABLFont color=0 0 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=15000
+Height=7500
+Brush color=178 214 252
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\VIEW]
+STRNFont=Arial,8,N
+STRNFont color=0 0 0
+DISPNAMEFont=Arial,8,N
+DISPNAMEFont color=0 0 0
+OWNRDISPNAMEFont=鏂板畫浣�,8,N
+OWNRDISPNAMEFont color=0, 0, 0
+ColumnsFont=Arial,8,N
+ColumnsFont color=0 0 0
+TablePkColumnsFont=鏂板畫浣�,8,U
+TablePkColumnsFont color=0, 0, 0
+TableFkColumnsFont=鏂板畫浣�,8,N
+TableFkColumnsFont color=0, 0, 0
+TemporaryVTablesFont=Arial,8,N
+TemporaryVTablesFont color=0 0 0
+IndexesFont=Arial,8,N
+IndexesFont color=0 0 0
+LABLFont=Arial,8,N
+LABLFont color=0 0 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4800
+Height=4000
+Brush color=233 202 131
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 128 128
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\PROC]
+STRNFont=Arial,8,N
+STRNFont color=0 0 0
+DISPNAMEFont=Arial,8,N
+DISPNAMEFont color=0 0 0
+OWNRDISPNAMEFont=鏂板畫浣�,8,N
+OWNRDISPNAMEFont color=0, 0, 0
+LABLFont=Arial,8,N
+LABLFont color=0 0 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4000
+Height=1000
+Brush color=255 255 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 108 0
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\REFR]
+SOURCEFont=鏂板畫浣�,8,N
+SOURCEFont color=0, 0, 0
+CENTERFont=鏂板畫浣�,8,N
+CENTERFont color=0, 0, 0
+DESTINATIONFont=鏂板畫浣�,8,N
+DESTINATIONFont color=0, 0, 0
+Line style=2
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 0 64
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\VREF]
+SOURCEFont=鏂板畫浣�,8,N
+SOURCEFont color=0, 0, 0
+CENTERFont=鏂板畫浣�,8,N
+CENTERFont color=0, 0, 0
+DESTINATIONFont=鏂板畫浣�,8,N
+DESTINATIONFont color=0, 0, 0
+Line style=2
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 0 64
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\USRDEPD]
+OBJXSTRFont=Arial,8,N
+OBJXSTRFont color=0 0 0
+Line style=0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=2 0 128 0 64
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\Free Symbol]
+Free TextFont=Arial,8,N
+Free TextFont color=0 0 0
+Line style=2
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 64 0
+Shadow color=192 192 192
+Shadow=0</a:DisplayPreferences>
+<a:PaperSize>(8268, 11693)</a:PaperSize>
+<a:PageMargins>((315,354), (433,354))</a:PageMargins>
+<a:PageOrientation>1</a:PageOrientation>
+<a:PaperSource>15</a:PaperSource>
+<c:Symbols>
+<o:TableSymbol Id="o1258">
+<a:CreationDate>1697636395</a:CreationDate>
+<a:ModificationDate>1697637105</a:ModificationDate>
+<a:IconMode>-1</a:IconMode>
+<a:Rect>((-25228,-15900), (25312,2300))</a:Rect>
+<a:AutoAdjustToText>0</a:AutoAdjustToText>
+<a:LineColor>12615680</a:LineColor>
+<a:FillColor>16570034</a:FillColor>
+<a:ShadowColor>12632256</a:ShadowColor>
+<a:FontList>STRN 0 Courier New,11,N
+DISPNAME 0 Courier New,11,N
+OWNRDISPNAME 0 Courier New,11,N
+Columns 0 Courier New,11,N
+TablePkColumns 255 Courier New,11,N
+TableFkColumns 16711680 Courier New,11,N
+Keys 0 Courier New,11,N
+Indexes 0 Courier New,11,N
+Triggers 0 Courier New,11,N
+LABL 0 Courier New,11,N</a:FontList>
+<a:BrushStyle>6</a:BrushStyle>
+<a:GradientFillMode>65</a:GradientFillMode>
+<a:GradientEndColor>16777215</a:GradientEndColor>
+<a:ManuallyResized>1</a:ManuallyResized>
+<c:Object>
+<o:Table Ref="o1259"/>
+</c:Object>
+</o:TableSymbol>
+<o:TableSymbol Id="o1260">
+<a:CreationDate>1697636433</a:CreationDate>
+<a:ModificationDate>1697637107</a:ModificationDate>
+<a:IconMode>-1</a:IconMode>
+<a:Rect>((-25153,4075), (25163,22275))</a:Rect>
+<a:AutoAdjustToText>0</a:AutoAdjustToText>
+<a:LineColor>12615680</a:LineColor>
+<a:FillColor>16570034</a:FillColor>
+<a:ShadowColor>12632256</a:ShadowColor>
+<a:FontList>STRN 0 Courier New,11,N
+DISPNAME 0 Courier New,11,N
+OWNRDISPNAME 0 Courier New,11,N
+Columns 0 Courier New,11,N
+TablePkColumns 255 Courier New,11,N
+TableFkColumns 16711680 Courier New,11,N
+Keys 0 Courier New,11,N
+Indexes 0 Courier New,11,N
+Triggers 0 Courier New,11,N
+LABL 0 Courier New,11,N</a:FontList>
+<a:BrushStyle>6</a:BrushStyle>
+<a:GradientFillMode>65</a:GradientFillMode>
+<a:GradientEndColor>16777215</a:GradientEndColor>
+<a:ManuallyResized>1</a:ManuallyResized>
+<c:Object>
+<o:Table Ref="o1261"/>
+</c:Object>
+</o:TableSymbol>
+</c:Symbols>
+</o:PhysicalDiagram>
+</c:PhysicalDiagrams>
+<c:DefaultDiagram>
+<o:PhysicalDiagram Ref="o1257"/>
+</c:DefaultDiagram>
+<c:Tables>
+<o:Table Id="o1259">
+<a:ObjectID>BE538B34-7442-4C18-9A24-1BE542F16094</a:ObjectID>
+<a:Name>璇剧▼绠$悊銆恡r_course_info銆�</a:Name>
+<a:Code>tr_course_info</a:Code>
+<a:CreationDate>1697636395</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697637055</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>璇剧▼绠$悊銆恡r_course_info銆�</a:Comment>
+<a:TotalSavingCurrency/>
+<c:Columns>
+<o:Column Id="o1262">
+<a:ObjectID>9586860E-AD5F-428E-927B-DEF1AF0BCD46</a:ObjectID>
+<a:Name>ID</a:Name>
+<a:Code>id</a:Code>
+<a:CreationDate>1697636395</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697636395</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>ID</a:Comment>
+<a:DataType>VARCHAR(32)</a:DataType>
+<a:Length>32</a:Length>
+<a:Mandatory>1</a:Mandatory>
+</o:Column>
+<o:Column Id="o1263">
+<a:ObjectID>1E3D77C5-F597-4950-BCF9-B40A27925B89</a:ObjectID>
+<a:Name>璇剧▼鍚嶇О</a:Name>
+<a:Code>course_name</a:Code>
+<a:CreationDate>1697636395</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697636395</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>璇剧▼鍚嶇О</a:Comment>
+<a:DataType>VARCHAR(200)</a:DataType>
+<a:Length>200</a:Length>
+</o:Column>
+<o:Column Id="o1264">
+<a:ObjectID>324A8A60-4101-4CF1-8BAC-429905BBDE7A</a:ObjectID>
+<a:Name>璇剧▼鍒嗙被id 璇剧▼鍒嗙被绠$悊銆恡r_course_type銆�</a:Name>
+<a:Code>course_type_id</a:Code>
+<a:CreationDate>1697636817</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697637146</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>璇剧▼鍒嗙被id 璇剧▼鍒嗙被绠$悊銆恡r_course_type銆�</a:Comment>
+<a:DataType>VARCHAR(32)</a:DataType>
+<a:Length>32</a:Length>
+</o:Column>
+<o:Column Id="o1265">
+<a:ObjectID>98B9D831-A593-402E-8A11-9EEAF0D07216</a:ObjectID>
+<a:Name>搴旂敤绫诲瀷id 璇剧▼鍒嗙被绠$悊銆恡r_course_type銆�</a:Name>
+<a:Code>course_field_id</a:Code>
+<a:CreationDate>1697636817</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697637146</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>搴旂敤绫诲瀷id 璇剧▼鍒嗙被绠$悊銆恡r_course_type銆�</a:Comment>
+<a:DataType>VARCHAR(32)</a:DataType>
+<a:Length>32</a:Length>
+</o:Column>
+<o:Column Id="o1266">
+<a:ObjectID>6FCD63DD-89F1-40D2-94C4-7AEBD45EA906</a:ObjectID>
+<a:Name>鐘舵�併��0锛氬惎鐢ㄣ��1锛氱鐢ㄣ��2锛氬垹闄ゃ��</a:Name>
+<a:Code>status</a:Code>
+<a:CreationDate>1697636949</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697636995</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鐘舵�併��0锛氬惎鐢ㄣ��1锛氱鐢ㄣ��2锛氬垹闄ゃ��</a:Comment>
+<a:DataType>INT2</a:DataType>
+<a:Length>2</a:Length>
+</o:Column>
+<o:Column Id="o1267">
+<a:ObjectID>BFBE710B-971A-4586-B1E3-EA7C613F7D40</a:ObjectID>
+<a:Name>璇剧▼璇存槑</a:Name>
+<a:Code>course_notes</a:Code>
+<a:CreationDate>1697637028</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697637055</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>璇剧▼璇存槑</a:Comment>
+<a:DataType>VARCHAR(300)</a:DataType>
+<a:Length>300</a:Length>
+</o:Column>
+<o:Column Id="o1268">
+<a:ObjectID>D5100A2A-D541-4647-9FAE-3B7A17AF0903</a:ObjectID>
+<a:Name>鍒涘缓浜�</a:Name>
+<a:Code>create_user_id</a:Code>
+<a:CreationDate>1697636395</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697636395</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍒涘缓浜�</a:Comment>
+<a:DataType>INT8</a:DataType>
+<a:Length>8</a:Length>
+</o:Column>
+<o:Column Id="o1269">
+<a:ObjectID>98243696-45C0-4320-8AF7-E0452503926D</a:ObjectID>
+<a:Name>鍒涘缓浜哄悕绉�</a:Name>
+<a:Code>create_user_name</a:Code>
+<a:CreationDate>1697636395</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697636395</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍒涘缓浜哄悕绉�</a:Comment>
+<a:DataType>VARCHAR(50)</a:DataType>
+<a:Length>50</a:Length>
+</o:Column>
+<o:Column Id="o1270">
+<a:ObjectID>AD073E0A-63CF-44BE-8E04-EC608B956567</a:ObjectID>
+<a:Name>鍒涘缓鏃堕棿</a:Name>
+<a:Code>create_time</a:Code>
+<a:CreationDate>1697636395</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697636395</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍒涘缓鏃堕棿</a:Comment>
+<a:DataType>INT8</a:DataType>
+<a:Length>8</a:Length>
+</o:Column>
+<o:Column Id="o1271">
+<a:ObjectID>16A5C598-12CF-4975-9C4D-7A8551DDB0D7</a:ObjectID>
+<a:Name>鏈�鍚庢洿鏂颁汉</a:Name>
+<a:Code>update_user_id</a:Code>
+<a:CreationDate>1697636395</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697636395</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鏇存柊浜�</a:Comment>
+<a:DataType>INT8</a:DataType>
+<a:Length>8</a:Length>
+</o:Column>
+<o:Column Id="o1272">
+<a:ObjectID>AD1827DE-FB04-4BA3-9A4C-01A5839C3B04</a:ObjectID>
+<a:Name>鏇存柊浜哄悕绉�</a:Name>
+<a:Code>update_user_name</a:Code>
+<a:CreationDate>1697636395</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697636395</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鏇存柊浜哄悕绉�</a:Comment>
+<a:DataType>VARCHAR(50)</a:DataType>
+<a:Length>50</a:Length>
+</o:Column>
+<o:Column Id="o1273">
+<a:ObjectID>16F2E82E-C5F3-48EA-80DD-3406CB1F6B98</a:ObjectID>
+<a:Name>鏈�鍚庢洿鏂版椂闂�</a:Name>
+<a:Code>update_time</a:Code>
+<a:CreationDate>1697636395</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697636395</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鏇存柊鏃堕棿</a:Comment>
+<a:DataType>INT8</a:DataType>
+<a:Length>8</a:Length>
+</o:Column>
+</c:Columns>
+<c:Keys>
+<o:Key Id="o1274">
+<a:ObjectID>67D56830-2B2B-40F6-BF62-2F2AC15815FD</a:ObjectID>
+<a:Name>Key_1</a:Name>
+<a:Code>Key_1</a:Code>
+<a:CreationDate>1697636395</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697636395</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<c:Key.Columns>
+<o:Column Ref="o1262"/>
+</c:Key.Columns>
+</o:Key>
+</c:Keys>
+<c:PrimaryKey>
+<o:Key Ref="o1274"/>
+</c:PrimaryKey>
+</o:Table>
+<o:Table Id="o1261">
+<a:ObjectID>47495462-F35B-417B-ADB6-A3CD9334C171</a:ObjectID>
+<a:Name>璇剧▼鍒嗙被绠$悊銆恡r_course_type銆�</a:Name>
+<a:Code>tr_course_type</a:Code>
+<a:CreationDate>1697636433</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697637121</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>璇剧▼鍒嗙被绠$悊銆恡r_course_type銆�</a:Comment>
+<a:TotalSavingCurrency/>
+<c:Columns>
+<o:Column Id="o1275">
+<a:ObjectID>A74E0D84-2424-4D76-8C44-F05105CA6923</a:ObjectID>
+<a:Name>ID</a:Name>
+<a:Code>id</a:Code>
+<a:CreationDate>1697636433</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697636433</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>ID</a:Comment>
+<a:DataType>VARCHAR(32)</a:DataType>
+<a:Length>32</a:Length>
+<a:Mandatory>1</a:Mandatory>
+</o:Column>
+<o:Column Id="o1276">
+<a:ObjectID>7DE2982F-6797-4376-AC4E-D02772EEED3C</a:ObjectID>
+<a:Name>璇剧▼鍒嗙被|搴旂敤绫诲瀷</a:Name>
+<a:Code>course_type_name</a:Code>
+<a:CreationDate>1697636433</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697636652</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>璇剧▼鍒嗙被|搴旂敤绫诲瀷</a:Comment>
+<a:DataType>VARCHAR(200)</a:DataType>
+<a:Length>200</a:Length>
+</o:Column>
+<o:Column Id="o1277">
+<a:ObjectID>0D990169-5DF9-4E18-96BD-419A07D02FAC</a:ObjectID>
+<a:Name>鍒嗙被銆�1锛氳绋嬬被鍒��2锛氬簲鐢ㄧ被鍨嬨��</a:Name>
+<a:Code>type</a:Code>
+<a:CreationDate>1697636577</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697638395</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍒嗙被銆�1锛氳绋嬬被鍒��2锛氬簲鐢ㄧ被鍨嬨��</a:Comment>
+<a:DataType>INT2</a:DataType>
+<a:Length>2</a:Length>
+</o:Column>
+<o:Column Id="o1278">
+<a:ObjectID>A3F5710E-F9C5-4FBB-9FA4-91585588B7C8</a:ObjectID>
+<a:Name>鍒涘缓浜�</a:Name>
+<a:Code>create_user_id</a:Code>
+<a:CreationDate>1697636433</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697636433</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍒涘缓浜�</a:Comment>
+<a:DataType>INT8</a:DataType>
+<a:Length>8</a:Length>
+</o:Column>
+<o:Column Id="o1279">
+<a:ObjectID>CA6636BA-CD1C-4119-AEC5-8A9BFC27DE9C</a:ObjectID>
+<a:Name>鍒涘缓浜哄悕绉�</a:Name>
+<a:Code>create_user_name</a:Code>
+<a:CreationDate>1697636433</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697636433</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍒涘缓浜哄悕绉�</a:Comment>
+<a:DataType>VARCHAR(50)</a:DataType>
+<a:Length>50</a:Length>
+</o:Column>
+<o:Column Id="o1280">
+<a:ObjectID>08B91D5E-5063-4C0B-978C-9C9E64030187</a:ObjectID>
+<a:Name>鍒涘缓鏃堕棿</a:Name>
+<a:Code>create_time</a:Code>
+<a:CreationDate>1697636433</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697636433</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍒涘缓鏃堕棿</a:Comment>
+<a:DataType>INT8</a:DataType>
+<a:Length>8</a:Length>
+</o:Column>
+<o:Column Id="o1281">
+<a:ObjectID>EDBB17BE-97E2-49B6-BE60-54F4AF147927</a:ObjectID>
+<a:Name>鏈�鍚庢洿鏂颁汉</a:Name>
+<a:Code>update_user_id</a:Code>
+<a:CreationDate>1697636433</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697636433</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鏇存柊浜�</a:Comment>
+<a:DataType>INT8</a:DataType>
+<a:Length>8</a:Length>
+</o:Column>
+<o:Column Id="o1282">
+<a:ObjectID>CA145B96-DBC6-41EF-BA14-29CD07C37DA2</a:ObjectID>
+<a:Name>鏇存柊浜哄悕绉�</a:Name>
+<a:Code>update_user_name</a:Code>
+<a:CreationDate>1697636433</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697636433</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鏇存柊浜哄悕绉�</a:Comment>
+<a:DataType>VARCHAR(50)</a:DataType>
+<a:Length>50</a:Length>
+</o:Column>
+<o:Column Id="o1283">
+<a:ObjectID>1EC878AC-830D-4EFE-94F7-94CBC53410AE</a:ObjectID>
+<a:Name>鏈�鍚庢洿鏂版椂闂�</a:Name>
+<a:Code>update_time</a:Code>
+<a:CreationDate>1697636433</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697636433</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鏇存柊鏃堕棿</a:Comment>
+<a:DataType>INT8</a:DataType>
+<a:Length>8</a:Length>
+</o:Column>
+</c:Columns>
+<c:Keys>
+<o:Key Id="o1284">
+<a:ObjectID>006198AD-6195-4408-AFE3-15DE86446D61</a:ObjectID>
+<a:Name>Key_1</a:Name>
+<a:Code>Key_1</a:Code>
+<a:CreationDate>1697636433</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697636433</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<c:Key.Columns>
+<o:Column Ref="o1275"/>
+</c:Key.Columns>
+</o:Key>
+</c:Keys>
+<c:PrimaryKey>
+<o:Key Ref="o1284"/>
+</c:PrimaryKey>
+</o:Table>
+</c:Tables>
+</o:Package>
+<o:Package Id="o1285">
+<a:ObjectID>37CF869B-CF4E-4FF7-9522-5E0608206CA2</a:ObjectID>
+<a:Name>甯堣祫绠$悊</a:Name>
+<a:Code>甯堣祫绠$悊</a:Code>
+<a:CreationDate>1697635479</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697638441</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<c:PhysicalDiagrams>
+<o:PhysicalDiagram Id="o1286">
+<a:ObjectID>101A4CBD-DB14-43C9-850A-F5737CB837A9</a:ObjectID>
+<a:Name>PhysicalDiagram_1</a:Name>
+<a:Code>PhysicalDiagram_1</a:Code>
+<a:CreationDate>1697635479</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697638441</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:DisplayPreferences>[DisplayPreferences]
+
+[DisplayPreferences\PDM]
+
+[DisplayPreferences\General]
+Adjust to text=Yes
+Snap Grid=No
+Constrain Labels=Yes
+Display Grid=No
+Show Page Delimiter=Yes
+Grid size=0
+Graphic unit=2
+Window color=255, 255, 255
+Background image=
+Background mode=8
+Watermark image=
+Watermark mode=8
+Show watermark on screen=No
+Gradient mode=0
+Gradient end color=255, 255, 255
+Show Swimlane=No
+SwimlaneVert=Yes
+TreeVert=No
+CompDark=0
+
+[DisplayPreferences\Object]
+Mode=0
+Trunc Length=80
+Word Length=80
+Word Text=!&quot;&quot;#$%&amp;&#39;()*+,-./:;&lt;=&gt;?@[\]^_`{|}~
+Shortcut IntIcon=Yes
+Shortcut IntLoct=Yes
+Shortcut IntFullPath=No
+Shortcut IntLastPackage=Yes
+Shortcut ExtIcon=Yes
+Shortcut ExtLoct=No
+Shortcut ExtFullPath=No
+Shortcut ExtLastPackage=Yes
+Shortcut ExtIncludeModl=Yes
+EObjShowStrn=Yes
+ExtendedObject.Comment=No
+ExtendedObject.IconPicture=No
+ExtendedObject_SymbolLayout=
+ELnkShowStrn=Yes
+ELnkShowName=Yes
+ExtendedLink_SymbolLayout=
+FileObject.Stereotype=No
+FileObject.DisplayName=Yes
+FileObject.LocationOrName=No
+FileObject.IconPicture=No
+FileObject.IconMode=Yes
+FileObject_SymbolLayout=
+PckgShowStrn=Yes
+Package.Comment=No
+Package.IconPicture=No
+Package_SymbolLayout=
+Display Model Version=Yes
+Table.Stereotype=Yes
+Table.DisplayName=Yes
+Table.OwnerDisplayName=No
+Table.Columns=Yes
+Table.Columns._Filter=&quot;All Columns&quot; PDMCOLNALL
+Table.Columns._Columns=Stereotype DataType KeyIndicator
+Table.Columns._Limit=-5
+Table.Keys=No
+Table.Keys._Columns=Stereotype Indicator
+Table.Indexes=No
+Table.Indexes._Columns=Stereotype
+Table.Triggers=No
+Table.Triggers._Columns=Stereotype
+Table.Comment=No
+Table.IconPicture=No
+Table_SymbolLayout=&lt;Form&gt;[CRLF] &lt;StandardAttribute Name=&quot;Stereotype&quot; Attribute=&quot;Stereotype&quot; Prefix=&quot;&amp;lt;&amp;lt;&quot; Suffix=&quot;&amp;gt;&amp;gt;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;ExclusiveChoice Name=&quot;Exclusive Choice&quot; Mandatory=&quot;Yes&quot; Display=&quot;HorizontalRadios&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Name&quot; Attribute=&quot;DisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;StandardAttribute Name=&quot;Owner and Name&quot; Attribute=&quot;OwnerDisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/ExclusiveChoice&gt;[CRLF] &lt;Separator Name=&quot;Separator&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Columns&quot; Collection=&quot;Columns&quot; Columns=&quot;Stereotype No\r\nDisplayName Yes\r\nDataType No\r\nSymbolDataType No &amp;quot;Domain or Data type&amp;quot;\r\nDomain No\r\nKeyIndicator No\r\nIndexIndicator No\r\nNullStatus No&quot; Filters=&quot;&amp;quot;All Columns&amp;quot;  PDMCOLNALL &amp;quot;&amp;quot;\r\n&amp;quot;PK Columns&amp;quot;  PDMCOLNPK &amp;quot;PRIM \&amp;quot;TRUE\&amp;quot; TRUE&amp;quot;\r\n&amp;quot;Key Columns&amp;quot;  PDMCOLNKEY &amp;quot;KEYS \&amp;quot;TRUE\&amp;quot; TRUE&amp;quot;&quot; HasLimit=&quot;Yes&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Keys&quot; Collection=&quot;Keys&quot; Columns=&quot;Stereotype No\r\nDisplayName Yes\r\nIndicator No&quot; HasLimit=&quot;No&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Indexes&quot; Collection=&quot;Indexes&quot; Columns=&quot;Stereotype No\r\nDisplayName Yes\r\nIndicator No&quot; HasLimit=&quot;No&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Triggers&quot; Collection=&quot;Triggers&quot; Columns=&quot;Stereotype No\r\nDisplayName Yes&quot; HasLimit=&quot;No&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Comment&quot; Attribute=&quot;Comment&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;LEFT&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Icon&quot; Attribute=&quot;IconPicture&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;Yes&quot; /&gt;[CRLF]&lt;/Form&gt;
+View.Stereotype=Yes
+View.DisplayName=Yes
+View.OwnerDisplayName=No
+View.Columns=Yes
+View.Columns._Columns=DisplayName
+View.Columns._Limit=-5
+View.TemporaryVTables=Yes
+View.Indexes=No
+View.Comment=No
+View.IconPicture=No
+View_SymbolLayout=&lt;Form&gt;[CRLF] &lt;StandardAttribute Name=&quot;Stereotype&quot; Attribute=&quot;Stereotype&quot; Prefix=&quot;&amp;lt;&amp;lt;&quot; Suffix=&quot;&amp;gt;&amp;gt;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;ExclusiveChoice Name=&quot;Exclusive Choice&quot; Mandatory=&quot;Yes&quot; Display=&quot;HorizontalRadios&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Name&quot; Attribute=&quot;DisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;StandardAttribute Name=&quot;Owner and Name&quot; Attribute=&quot;OwnerDisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/ExclusiveChoice&gt;[CRLF] &lt;Separator Name=&quot;Separator&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Columns&quot; Collection=&quot;Columns&quot; Columns=&quot;DisplayName No\r\nExpression No\r\nDataType No\r\nSymbolDataType No &amp;quot;Domain or Data type&amp;quot;\r\nIndexIndicator No&quot; HasLimit=&quot;Yes&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Tables&quot; Collection=&quot;TemporaryVTables&quot; Columns=&quot;Name Yes&quot; HasLimit=&quot;No&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Indexes&quot; Collection=&quot;Indexes&quot; Columns=&quot;DisplayName Yes&quot; HasLimit=&quot;No&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Comment&quot; Attribute=&quot;Comment&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;LEFT&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Icon&quot; Attribute=&quot;IconPicture&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;Yes&quot; /&gt;[CRLF]&lt;/Form&gt;
+Procedure.Stereotype=No
+Procedure.DisplayName=Yes
+Procedure.OwnerDisplayName=No
+Procedure.Comment=No
+Procedure.IconPicture=No
+Procedure_SymbolLayout=&lt;Form&gt;[CRLF] &lt;StandardAttribute Name=&quot;Stereotype&quot; Attribute=&quot;Stereotype&quot; Prefix=&quot;&amp;lt;&amp;lt;&quot; Suffix=&quot;&amp;gt;&amp;gt;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;ExclusiveChoice Name=&quot;Exclusive Choice&quot; Mandatory=&quot;Yes&quot; Display=&quot;HorizontalRadios&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Name&quot; Attribute=&quot;DisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;StandardAttribute Name=&quot;Owner and Name&quot; Attribute=&quot;OwnerDisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/ExclusiveChoice&gt;[CRLF] &lt;Separator Name=&quot;Separator&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Comment&quot; Attribute=&quot;Comment&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;LEFT&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Icon&quot; Attribute=&quot;IconPicture&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;Yes&quot; /&gt;[CRLF]&lt;/Form&gt;
+Reference.Cardinality=No
+Reference.ImplementationType=No
+Reference.ChildRole=Yes
+Reference.Stereotype=Yes
+Reference.DisplayName=No
+Reference.ForeignKeyConstraintName=Yes
+Reference.JoinExpression=No
+Reference.Integrity=No
+Reference.ParentRole=Yes
+Reference_SymbolLayout=&lt;Form&gt;[CRLF] &lt;Form Name=&quot;Source&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Cardinality&quot; Attribute=&quot;Cardinality&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;StandardAttribute Name=&quot;Implementation&quot; Attribute=&quot;ImplementationType&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;StandardAttribute Name=&quot;Child Role&quot; Attribute=&quot;ChildRole&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/Form&gt;[CRLF] &lt;Form Name=&quot;Center&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Stereotype&quot; Attribute=&quot;Stereotype&quot; Prefix=&quot;&amp;lt;&amp;lt;&quot; Suffix=&quot;&amp;gt;&amp;gt;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;ExclusiveChoice Name=&quot;Exclusive Choice&quot; Mandatory=&quot;No&quot; Display=&quot;HorizontalRadios&quot; &gt;[CRLF]   &lt;StandardAttribute Name=&quot;Name&quot; Attribute=&quot;DisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]   &lt;StandardAttribute Name=&quot;Cons&amp;amp;traint Name&quot; Attribute=&quot;ForeignKeyConstraintName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;Cons&amp;amp;traint Name&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]   &lt;StandardAttribute Name=&quot;Join&quot; Attribute=&quot;JoinExpression&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;Join&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;/ExclusiveChoice&gt;[CRLF]  &lt;StandardAttribute Name=&quot;Referential integrity&quot; Attribute=&quot;Integrity&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;Referential integrity&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/Form&gt;[CRLF] &lt;Form Name=&quot;Destination&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Parent Role&quot; Attribute=&quot;ParentRole&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/Form&gt;[CRLF]&lt;/Form&gt;
+ViewReference.ChildRole=Yes
+ViewReference.Stereotype=Yes
+ViewReference.DisplayName=No
+ViewReference.JoinExpression=No
+ViewReference.ParentRole=Yes
+ViewReference_SymbolLayout=&lt;Form&gt;[CRLF] &lt;Form Name=&quot;Source&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Child Role&quot; Attribute=&quot;ChildRole&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/Form&gt;[CRLF] &lt;Form Name=&quot;Center&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Stereotype&quot; Attribute=&quot;Stereotype&quot; Prefix=&quot;&amp;lt;&amp;lt;&quot; Suffix=&quot;&amp;gt;&amp;gt;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;ExclusiveChoice Name=&quot;Exclusive Choice&quot; Mandatory=&quot;No&quot; Display=&quot;HorizontalRadios&quot; &gt;[CRLF]   &lt;StandardAttribute Name=&quot;Name&quot; Attribute=&quot;DisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]   &lt;StandardAttribute Name=&quot;Join Expression&quot; Attribute=&quot;JoinExpression&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;/ExclusiveChoice&gt;[CRLF] &lt;/Form&gt;[CRLF] &lt;Form Name=&quot;Destination&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Parent Role&quot; Attribute=&quot;ParentRole&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/Form&gt;[CRLF]&lt;/Form&gt;
+
+[DisplayPreferences\Symbol]
+
+[DisplayPreferences\Symbol\FRMEOBJ]
+STRNFont=Arial,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial,8,N
+DISPNAMEFont color=0, 0, 0
+LABLFont=Arial,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=6000
+Height=2000
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=64
+Brush gradient color=192 192 192
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 255 128 128
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\FRMELNK]
+CENTERFont=Arial,8,N
+CENTERFont color=0, 0, 0
+Line style=2
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 128 255
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\FILO]
+OBJSTRNFont=鏂板畫浣�,8,N
+OBJSTRNFont color=0, 0, 0
+DISPNAMEFont=鏂板畫浣�,8,N
+DISPNAMEFont color=0, 0, 0
+LCNMFont=鏂板畫浣�,8,N
+LCNMFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=Yes
+Keep center=Yes
+Keep size=No
+Width=2400
+Height=2400
+Brush color=255 255 255
+Fill Color=No
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 0 255
+Shadow color=192 192 192
+Shadow=-1
+
+[DisplayPreferences\Symbol\PDMPCKG]
+STRNFont=Arial,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial,8,N
+DISPNAMEFont color=0, 0, 0
+LABLFont=Arial,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4800
+Height=3600
+Brush color=255 255 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 178 178 178
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\TABL]
+STRNFont=鏂板畫浣�,20,N
+STRNFont color=0 0 0
+DISPNAMEFont=鏂板畫浣�,8,N
+DISPNAMEFont color=0 0 0
+OWNRDISPNAMEFont=鏂板畫浣�,8,N
+OWNRDISPNAMEFont color=0 0 0
+ColumnsFont=鏂板畫浣�,8,N
+ColumnsFont color=0 0 0
+TablePkColumnsFont=鏂板畫浣�,8,U
+TablePkColumnsFont color=0 0 0
+TableFkColumnsFont=鏂板畫浣�,8,N
+TableFkColumnsFont color=0 0 0
+KeysFont=鏂板畫浣�,8,N
+KeysFont color=0 0 0
+IndexesFont=鏂板畫浣�,8,N
+IndexesFont color=0 0 0
+TriggersFont=鏂板畫浣�,8,N
+TriggersFont color=0 0 0
+LABLFont=鏂板畫浣�,8,N
+LABLFont color=0 0 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=15000
+Height=7500
+Brush color=178 214 252
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\VIEW]
+STRNFont=Arial,8,N
+STRNFont color=0 0 0
+DISPNAMEFont=Arial,8,N
+DISPNAMEFont color=0 0 0
+OWNRDISPNAMEFont=鏂板畫浣�,8,N
+OWNRDISPNAMEFont color=0, 0, 0
+ColumnsFont=Arial,8,N
+ColumnsFont color=0 0 0
+TablePkColumnsFont=鏂板畫浣�,8,U
+TablePkColumnsFont color=0, 0, 0
+TableFkColumnsFont=鏂板畫浣�,8,N
+TableFkColumnsFont color=0, 0, 0
+TemporaryVTablesFont=Arial,8,N
+TemporaryVTablesFont color=0 0 0
+IndexesFont=Arial,8,N
+IndexesFont color=0 0 0
+LABLFont=Arial,8,N
+LABLFont color=0 0 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4800
+Height=4000
+Brush color=233 202 131
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 128 128
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\PROC]
+STRNFont=Arial,8,N
+STRNFont color=0 0 0
+DISPNAMEFont=Arial,8,N
+DISPNAMEFont color=0 0 0
+OWNRDISPNAMEFont=鏂板畫浣�,8,N
+OWNRDISPNAMEFont color=0, 0, 0
+LABLFont=Arial,8,N
+LABLFont color=0 0 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4000
+Height=1000
+Brush color=255 255 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 108 0
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\REFR]
+SOURCEFont=鏂板畫浣�,8,N
+SOURCEFont color=0, 0, 0
+CENTERFont=鏂板畫浣�,8,N
+CENTERFont color=0, 0, 0
+DESTINATIONFont=鏂板畫浣�,8,N
+DESTINATIONFont color=0, 0, 0
+Line style=2
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 0 64
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\VREF]
+SOURCEFont=鏂板畫浣�,8,N
+SOURCEFont color=0, 0, 0
+CENTERFont=鏂板畫浣�,8,N
+CENTERFont color=0, 0, 0
+DESTINATIONFont=鏂板畫浣�,8,N
+DESTINATIONFont color=0, 0, 0
+Line style=2
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 0 64
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\USRDEPD]
+OBJXSTRFont=Arial,8,N
+OBJXSTRFont color=0 0 0
+Line style=0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=2 0 128 0 64
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\Free Symbol]
+Free TextFont=Arial,8,N
+Free TextFont color=0 0 0
+Line style=2
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 64 0
+Shadow color=192 192 192
+Shadow=0</a:DisplayPreferences>
+<a:PaperSize>(8268, 11693)</a:PaperSize>
+<a:PageMargins>((315,354), (433,354))</a:PageMargins>
+<a:PageOrientation>1</a:PageOrientation>
+<a:PaperSource>15</a:PaperSource>
+<c:Symbols>
+<o:TableSymbol Id="o1287">
+<a:CreationDate>1697638441</a:CreationDate>
+<a:ModificationDate>1697640626</a:ModificationDate>
+<a:IconMode>-1</a:IconMode>
+<a:Rect>((-25158,-22612), (25158,9100))</a:Rect>
+<a:AutoAdjustToText>0</a:AutoAdjustToText>
+<a:LineColor>12615680</a:LineColor>
+<a:FillColor>16570034</a:FillColor>
+<a:ShadowColor>12632256</a:ShadowColor>
+<a:FontList>STRN 0 Courier New,11,N
+DISPNAME 0 Courier New,11,N
+OWNRDISPNAME 0 Courier New,11,N
+Columns 0 Courier New,11,N
+TablePkColumns 255 Courier New,11,N
+TableFkColumns 16711680 Courier New,11,N
+Keys 0 Courier New,11,N
+Indexes 0 Courier New,11,N
+Triggers 0 Courier New,11,N
+LABL 0 Courier New,11,N</a:FontList>
+<a:BrushStyle>6</a:BrushStyle>
+<a:GradientFillMode>65</a:GradientFillMode>
+<a:GradientEndColor>16777215</a:GradientEndColor>
+<a:ManuallyResized>1</a:ManuallyResized>
+<c:Object>
+<o:Table Ref="o1288"/>
+</c:Object>
+</o:TableSymbol>
+</c:Symbols>
+</o:PhysicalDiagram>
+</c:PhysicalDiagrams>
+<c:DefaultDiagram>
+<o:PhysicalDiagram Ref="o1286"/>
+</c:DefaultDiagram>
+<c:Tables>
+<o:Table Id="o1288">
+<a:ObjectID>09DE43A0-2276-4DA2-9C44-1C11C675C429</a:ObjectID>
+<a:Name>甯堣祫绠$悊銆恡r_teacher_manage銆�</a:Name>
+<a:Code>tr_teacher_manage</a:Code>
+<a:CreationDate>1697638441</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697705822</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>甯堣祫绠$悊銆恡r_teacher_manage銆�</a:Comment>
+<a:TotalSavingCurrency/>
+<c:Columns>
+<o:Column Id="o1289">
+<a:ObjectID>9869F0B9-EB07-4977-BA84-366C58B238A8</a:ObjectID>
+<a:Name>ID</a:Name>
+<a:Code>id</a:Code>
+<a:CreationDate>1697638441</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697638441</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>ID</a:Comment>
+<a:DataType>VARCHAR(32)</a:DataType>
+<a:Length>32</a:Length>
+<a:Mandatory>1</a:Mandatory>
+</o:Column>
+<o:Column Id="o1290">
+<a:ObjectID>DF689E7B-4167-4121-8991-31D700334643</a:ObjectID>
+<a:Name>鎵�灞炴満鏋�</a:Name>
+<a:Code>org_id</a:Code>
+<a:CreationDate>1697639574</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697639942</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鎵�灞炴満鏋�</a:Comment>
+<a:DataType>INT8</a:DataType>
+<a:Length>8</a:Length>
+</o:Column>
+<o:Column Id="o1291">
+<a:ObjectID>287C0266-7675-4DEC-BEF5-326CD40CD2F0</a:ObjectID>
+<a:Name>甯堣祫绫诲瀷銆�1锛氱郴缁熷唴甯堣祫銆�2锛氭牎鍐呭笀璧勩��3锛氬鑱樿甯堛��</a:Name>
+<a:Code>teacher_type</a:Code>
+<a:CreationDate>1697639574</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697639942</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>甯堣祫绫诲瀷銆�1锛氱郴缁熷唴甯堣祫銆�2锛氭牎鍐呭笀璧勩��3锛氬鑱樿甯堛��</a:Comment>
+<a:DataType>INT2</a:DataType>
+<a:Length>2</a:Length>
+</o:Column>
+<o:Column Id="o1292">
+<a:ObjectID>91D1CA5A-E52F-4F57-97E3-89821BE95F58</a:ObjectID>
+<a:Name>鎵嬫満鍙�</a:Name>
+<a:Code>phone</a:Code>
+<a:CreationDate>1697639942</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697640013</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鎵嬫満鍙�</a:Comment>
+<a:DataType>VARCHAR(32)</a:DataType>
+<a:Length>32</a:Length>
+</o:Column>
+<o:Column Id="o1293">
+<a:ObjectID>AC57267B-296E-47F0-AC5F-34CC0C0C9EC3</a:ObjectID>
+<a:Name>鎵嬫満鍙疯劚鏁忓鐞�</a:Name>
+<a:Code>phone_desen</a:Code>
+<a:CreationDate>1697640002</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697640013</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鎵嬫満鍙疯劚鏁忓鐞�</a:Comment>
+<a:DataType>VARCHAR(32)</a:DataType>
+<a:Length>32</a:Length>
+</o:Column>
+<o:Column Id="o1294">
+<a:ObjectID>5D4ECD6E-DD1F-469E-993F-8AD96B5FBA62</a:ObjectID>
+<a:Name>韬唤璇佸彿</a:Name>
+<a:Code>card_no</a:Code>
+<a:CreationDate>1697640208</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697640222</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>韬唤璇佸彿</a:Comment>
+<a:DataType>VARCHAR(32)</a:DataType>
+<a:Length>32</a:Length>
+</o:Column>
+<o:Column Id="o1295">
+<a:ObjectID>E75E5509-2320-466B-A68A-5DFACA53DB27</a:ObjectID>
+<a:Name>韬唤璇佸彿鑴辨晱澶勭悊</a:Name>
+<a:Code>card_no_desen</a:Code>
+<a:CreationDate>1697640208</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697640222</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>韬唤璇佸彿鑴辨晱澶勭悊</a:Comment>
+<a:DataType>VARCHAR(32)</a:DataType>
+<a:Length>32</a:Length>
+</o:Column>
+<o:Column Id="o1296">
+<a:ObjectID>6B366649-CDEE-4E17-A5F7-C97A4D56A52D</a:ObjectID>
+<a:Name>鍛樺伐id</a:Name>
+<a:Code>user_id</a:Code>
+<a:CreationDate>1697640122</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697640175</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍛樺伐id</a:Comment>
+<a:DataType>INT8</a:DataType>
+<a:Length>8</a:Length>
+</o:Column>
+<o:Column Id="o1297">
+<a:ObjectID>3CC19DF1-10EC-4189-AE7E-2C385F66C75E</a:ObjectID>
+<a:Name>鍛樺伐濮撳悕銆愭暀甯堝鍚嶃��</a:Name>
+<a:Code>user_name</a:Code>
+<a:CreationDate>1697640017</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697640175</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍛樺伐濮撳悕銆愭暀甯堝鍚嶃��</a:Comment>
+<a:DataType>VARCHAR(50)</a:DataType>
+<a:Length>50</a:Length>
+</o:Column>
+<o:Column Id="o1298">
+<a:ObjectID>08A9CC3C-9240-4DCE-B073-75DC88727556</a:ObjectID>
+<a:Name>鍒涘缓浜�</a:Name>
+<a:Code>create_user_id</a:Code>
+<a:CreationDate>1697638441</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697638441</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍒涘缓浜�</a:Comment>
+<a:DataType>INT8</a:DataType>
+<a:Length>8</a:Length>
+</o:Column>
+<o:Column Id="o1299">
+<a:ObjectID>5B76BE9D-2344-4DED-BEB6-F003A123B1F2</a:ObjectID>
+<a:Name>鍒涘缓浜哄悕绉�</a:Name>
+<a:Code>create_user_name</a:Code>
+<a:CreationDate>1697638441</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697638441</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍒涘缓浜哄悕绉�</a:Comment>
+<a:DataType>VARCHAR(50)</a:DataType>
+<a:Length>50</a:Length>
+</o:Column>
+<o:Column Id="o1300">
+<a:ObjectID>D380227F-24A8-4489-9D6D-DA3CBEC74CE7</a:ObjectID>
+<a:Name>鍒涘缓鏃堕棿</a:Name>
+<a:Code>create_time</a:Code>
+<a:CreationDate>1697638441</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697638441</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鍒涘缓鏃堕棿</a:Comment>
+<a:DataType>INT8</a:DataType>
+<a:Length>8</a:Length>
+</o:Column>
+<o:Column Id="o1301">
+<a:ObjectID>5287DA6C-6D5C-4D2B-B000-7DE0A7BD1083</a:ObjectID>
+<a:Name>鏈�鍚庢洿鏂颁汉</a:Name>
+<a:Code>update_user_id</a:Code>
+<a:CreationDate>1697638441</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697638441</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鏇存柊浜�</a:Comment>
+<a:DataType>INT8</a:DataType>
+<a:Length>8</a:Length>
+</o:Column>
+<o:Column Id="o1302">
+<a:ObjectID>C16A3CC4-7B2E-4139-B7DB-80B4A8EDDF10</a:ObjectID>
+<a:Name>鏇存柊浜哄悕绉�</a:Name>
+<a:Code>update_user_name</a:Code>
+<a:CreationDate>1697638441</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697638441</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鏇存柊浜哄悕绉�</a:Comment>
+<a:DataType>VARCHAR(50)</a:DataType>
+<a:Length>50</a:Length>
+</o:Column>
+<o:Column Id="o1303">
+<a:ObjectID>76F1AF6D-CA58-4BBB-A479-CD2D767FFD7D</a:ObjectID>
+<a:Name>鏈�鍚庢洿鏂版椂闂�</a:Name>
+<a:Code>update_time</a:Code>
+<a:CreationDate>1697638441</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697638441</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鏇存柊鏃堕棿</a:Comment>
+<a:DataType>INT8</a:DataType>
+<a:Length>8</a:Length>
+</o:Column>
+<o:Column Id="o1304">
+<a:ObjectID>4F236B61-A54B-4079-ACBD-56FF3A4F4FF9</a:ObjectID>
+<a:Name>涓撲笟棰嗗煙_key</a:Name>
+<a:Code>professional_key</a:Code>
+<a:CreationDate>1697640223</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697640345</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>涓撲笟棰嗗煙_key</a:Comment>
+<a:DataType>VARCHAR(32)</a:DataType>
+<a:Length>32</a:Length>
+</o:Column>
+<o:Column Id="o1305">
+<a:ObjectID>AA9F57DA-42B7-4D84-AA4B-3F712101FC73</a:ObjectID>
+<a:Name>涓撲笟棰嗗煙_value</a:Name>
+<a:Code>professional_value</a:Code>
+<a:CreationDate>1697640223</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697640345</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>涓撲笟棰嗗煙_value</a:Comment>
+<a:DataType>VARCHAR(50)</a:DataType>
+<a:Length>50</a:Length>
+</o:Column>
+<o:Column Id="o1306">
+<a:ObjectID>EBC470F2-BB0B-4050-9C51-1787F20F4CFD</a:ObjectID>
+<a:Name>鏄惁棰嗗浜哄憳銆�1锛氭槸銆�0锛氬惁銆�</a:Name>
+<a:Code>is_leader</a:Code>
+<a:CreationDate>1697640402</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697640440</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>鏄惁棰嗗浜哄憳銆�1锛氭槸銆�0锛氬惁銆�</a:Comment>
+<a:DataType>INT2</a:DataType>
+<a:Length>2</a:Length>
+</o:Column>
+<o:Column Id="o1307">
+<a:ObjectID>53D3EAD8-0BD4-4B22-9CFE-0332E2174764</a:ObjectID>
+<a:Name>閾惰鍗¤处鎴�</a:Name>
+<a:Code>card_account</a:Code>
+<a:CreationDate>1697640440</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697640609</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>閾惰鍗¤处鎴�</a:Comment>
+<a:DataType>VARCHAR(50)</a:DataType>
+<a:Length>50</a:Length>
+</o:Column>
+<o:Column Id="o1308">
+<a:ObjectID>F48E92E5-8B5E-4851-984F-2BEEE0D4E64A</a:ObjectID>
+<a:Name>璐︽埛寮�鎴峰悕</a:Name>
+<a:Code>card_account_name</a:Code>
+<a:CreationDate>1697640440</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697640609</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>璐︽埛寮�鎴峰悕</a:Comment>
+<a:DataType>VARCHAR(50)</a:DataType>
+<a:Length>50</a:Length>
+</o:Column>
+<o:Column Id="o1309">
+<a:ObjectID>DA74C00D-9BD0-41FF-96DF-5ECB8C65C5F8</a:ObjectID>
+<a:Name>寮�鎴疯鍚嶇О</a:Name>
+<a:Code>bank_name</a:Code>
+<a:CreationDate>1697640440</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697640609</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:Comment>寮�鎴疯鍚嶇О</a:Comment>
+<a:DataType>VARCHAR(50)</a:DataType>
+<a:Length>50</a:Length>
+</o:Column>
+</c:Columns>
+<c:Keys>
+<o:Key Id="o1310">
+<a:ObjectID>C35EC940-3B07-4E33-9806-E3B8BB424800</a:ObjectID>
+<a:Name>Key_1</a:Name>
+<a:Code>Key_1</a:Code>
+<a:CreationDate>1697638441</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697638441</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<c:Key.Columns>
+<o:Column Ref="o1289"/>
+</c:Key.Columns>
+</o:Key>
+</c:Keys>
+<c:PrimaryKey>
+<o:Key Ref="o1310"/>
+</c:PrimaryKey>
+</o:Table>
+</c:Tables>
+</o:Package>
+<o:Package Id="o1311">
+<a:ObjectID>09529724-3CFD-48F9-BB56-FEA60FAE6DBD</a:ObjectID>
+<a:Name>璇鹃叕鏍囧噯璁惧畾</a:Name>
+<a:Code>璇鹃叕鏍囧噯璁惧畾</a:Code>
+<a:CreationDate>1697635506</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697635517</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<c:PhysicalDiagrams>
+<o:PhysicalDiagram Id="o1312">
+<a:ObjectID>8C6ED2B2-FDB0-494A-A834-E85FA07DB1A8</a:ObjectID>
+<a:Name>PhysicalDiagram_1</a:Name>
+<a:Code>PhysicalDiagram_1</a:Code>
+<a:CreationDate>1697635506</a:CreationDate>
+<a:Creator>WYH</a:Creator>
+<a:ModificationDate>1697635517</a:ModificationDate>
+<a:Modifier>WYH</a:Modifier>
+<a:DisplayPreferences>[DisplayPreferences]
+
+[DisplayPreferences\PDM]
+
+[DisplayPreferences\General]
+Adjust to text=Yes
+Snap Grid=No
+Constrain Labels=Yes
+Display Grid=No
+Show Page Delimiter=Yes
+Grid size=0
+Graphic unit=2
+Window color=255, 255, 255
+Background image=
+Background mode=8
+Watermark image=
+Watermark mode=8
+Show watermark on screen=No
+Gradient mode=0
+Gradient end color=255, 255, 255
+Show Swimlane=No
+SwimlaneVert=Yes
+TreeVert=No
+CompDark=0
+
+[DisplayPreferences\Object]
+Mode=0
+Trunc Length=80
+Word Length=80
+Word Text=!&quot;&quot;#$%&amp;&#39;()*+,-./:;&lt;=&gt;?@[\]^_`{|}~
+Shortcut IntIcon=Yes
+Shortcut IntLoct=Yes
+Shortcut IntFullPath=No
+Shortcut IntLastPackage=Yes
+Shortcut ExtIcon=Yes
+Shortcut ExtLoct=No
+Shortcut ExtFullPath=No
+Shortcut ExtLastPackage=Yes
+Shortcut ExtIncludeModl=Yes
+EObjShowStrn=Yes
+ExtendedObject.Comment=No
+ExtendedObject.IconPicture=No
+ExtendedObject_SymbolLayout=
+ELnkShowStrn=Yes
+ELnkShowName=Yes
+ExtendedLink_SymbolLayout=
+FileObject.Stereotype=No
+FileObject.DisplayName=Yes
+FileObject.LocationOrName=No
+FileObject.IconPicture=No
+FileObject.IconMode=Yes
+FileObject_SymbolLayout=
+PckgShowStrn=Yes
+Package.Comment=No
+Package.IconPicture=No
+Package_SymbolLayout=
+Display Model Version=Yes
+Table.Stereotype=Yes
+Table.DisplayName=Yes
+Table.OwnerDisplayName=No
+Table.Columns=Yes
+Table.Columns._Filter=&quot;All Columns&quot; PDMCOLNALL
+Table.Columns._Columns=Stereotype DataType KeyIndicator
+Table.Columns._Limit=-5
+Table.Keys=No
+Table.Keys._Columns=Stereotype Indicator
+Table.Indexes=No
+Table.Indexes._Columns=Stereotype
+Table.Triggers=No
+Table.Triggers._Columns=Stereotype
+Table.Comment=No
+Table.IconPicture=No
+Table_SymbolLayout=&lt;Form&gt;[CRLF] &lt;StandardAttribute Name=&quot;Stereotype&quot; Attribute=&quot;Stereotype&quot; Prefix=&quot;&amp;lt;&amp;lt;&quot; Suffix=&quot;&amp;gt;&amp;gt;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;ExclusiveChoice Name=&quot;Exclusive Choice&quot; Mandatory=&quot;Yes&quot; Display=&quot;HorizontalRadios&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Name&quot; Attribute=&quot;DisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;StandardAttribute Name=&quot;Owner and Name&quot; Attribute=&quot;OwnerDisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/ExclusiveChoice&gt;[CRLF] &lt;Separator Name=&quot;Separator&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Columns&quot; Collection=&quot;Columns&quot; Columns=&quot;Stereotype No\r\nDisplayName Yes\r\nDataType No\r\nSymbolDataType No &amp;quot;Domain or Data type&amp;quot;\r\nDomain No\r\nKeyIndicator No\r\nIndexIndicator No\r\nNullStatus No&quot; Filters=&quot;&amp;quot;All Columns&amp;quot;  PDMCOLNALL &amp;quot;&amp;quot;\r\n&amp;quot;PK Columns&amp;quot;  PDMCOLNPK &amp;quot;PRIM \&amp;quot;TRUE\&amp;quot; TRUE&amp;quot;\r\n&amp;quot;Key Columns&amp;quot;  PDMCOLNKEY &amp;quot;KEYS \&amp;quot;TRUE\&amp;quot; TRUE&amp;quot;&quot; HasLimit=&quot;Yes&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Keys&quot; Collection=&quot;Keys&quot; Columns=&quot;Stereotype No\r\nDisplayName Yes\r\nIndicator No&quot; HasLimit=&quot;No&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Indexes&quot; Collection=&quot;Indexes&quot; Columns=&quot;Stereotype No\r\nDisplayName Yes\r\nIndicator No&quot; HasLimit=&quot;No&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Triggers&quot; Collection=&quot;Triggers&quot; Columns=&quot;Stereotype No\r\nDisplayName Yes&quot; HasLimit=&quot;No&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Comment&quot; Attribute=&quot;Comment&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;LEFT&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Icon&quot; Attribute=&quot;IconPicture&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;Yes&quot; /&gt;[CRLF]&lt;/Form&gt;
+View.Stereotype=Yes
+View.DisplayName=Yes
+View.OwnerDisplayName=No
+View.Columns=Yes
+View.Columns._Columns=DisplayName
+View.Columns._Limit=-5
+View.TemporaryVTables=Yes
+View.Indexes=No
+View.Comment=No
+View.IconPicture=No
+View_SymbolLayout=&lt;Form&gt;[CRLF] &lt;StandardAttribute Name=&quot;Stereotype&quot; Attribute=&quot;Stereotype&quot; Prefix=&quot;&amp;lt;&amp;lt;&quot; Suffix=&quot;&amp;gt;&amp;gt;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;ExclusiveChoice Name=&quot;Exclusive Choice&quot; Mandatory=&quot;Yes&quot; Display=&quot;HorizontalRadios&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Name&quot; Attribute=&quot;DisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;StandardAttribute Name=&quot;Owner and Name&quot; Attribute=&quot;OwnerDisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/ExclusiveChoice&gt;[CRLF] &lt;Separator Name=&quot;Separator&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Columns&quot; Collection=&quot;Columns&quot; Columns=&quot;DisplayName No\r\nExpression No\r\nDataType No\r\nSymbolDataType No &amp;quot;Domain or Data type&amp;quot;\r\nIndexIndicator No&quot; HasLimit=&quot;Yes&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Tables&quot; Collection=&quot;TemporaryVTables&quot; Columns=&quot;Name Yes&quot; HasLimit=&quot;No&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Indexes&quot; Collection=&quot;Indexes&quot; Columns=&quot;DisplayName Yes&quot; HasLimit=&quot;No&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Comment&quot; Attribute=&quot;Comment&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;LEFT&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Icon&quot; Attribute=&quot;IconPicture&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;Yes&quot; /&gt;[CRLF]&lt;/Form&gt;
+Procedure.Stereotype=No
+Procedure.DisplayName=Yes
+Procedure.OwnerDisplayName=No
+Procedure.Comment=No
+Procedure.IconPicture=No
+Procedure_SymbolLayout=&lt;Form&gt;[CRLF] &lt;StandardAttribute Name=&quot;Stereotype&quot; Attribute=&quot;Stereotype&quot; Prefix=&quot;&amp;lt;&amp;lt;&quot; Suffix=&quot;&amp;gt;&amp;gt;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;ExclusiveChoice Name=&quot;Exclusive Choice&quot; Mandatory=&quot;Yes&quot; Display=&quot;HorizontalRadios&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Name&quot; Attribute=&quot;DisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;StandardAttribute Name=&quot;Owner and Name&quot; Attribute=&quot;OwnerDisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/ExclusiveChoice&gt;[CRLF] &lt;Separator Name=&quot;Separator&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Comment&quot; Attribute=&quot;Comment&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;LEFT&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Icon&quot; Attribute=&quot;IconPicture&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;Yes&quot; /&gt;[CRLF]&lt;/Form&gt;
+Reference.Cardinality=No
+Reference.ImplementationType=No
+Reference.ChildRole=Yes
+Reference.Stereotype=Yes
+Reference.DisplayName=No
+Reference.ForeignKeyConstraintName=Yes
+Reference.JoinExpression=No
+Reference.Integrity=No
+Reference.ParentRole=Yes
+Reference_SymbolLayout=&lt;Form&gt;[CRLF] &lt;Form Name=&quot;Source&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Cardinality&quot; Attribute=&quot;Cardinality&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;StandardAttribute Name=&quot;Implementation&quot; Attribute=&quot;ImplementationType&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;StandardAttribute Name=&quot;Child Role&quot; Attribute=&quot;ChildRole&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/Form&gt;[CRLF] &lt;Form Name=&quot;Center&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Stereotype&quot; Attribute=&quot;Stereotype&quot; Prefix=&quot;&amp;lt;&amp;lt;&quot; Suffix=&quot;&amp;gt;&amp;gt;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;ExclusiveChoice Name=&quot;Exclusive Choice&quot; Mandatory=&quot;No&quot; Display=&quot;HorizontalRadios&quot; &gt;[CRLF]   &lt;StandardAttribute Name=&quot;Name&quot; Attribute=&quot;DisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]   &lt;StandardAttribute Name=&quot;Cons&amp;amp;traint Name&quot; Attribute=&quot;ForeignKeyConstraintName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;Cons&amp;amp;traint Name&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]   &lt;StandardAttribute Name=&quot;Join&quot; Attribute=&quot;JoinExpression&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;Join&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;/ExclusiveChoice&gt;[CRLF]  &lt;StandardAttribute Name=&quot;Referential integrity&quot; Attribute=&quot;Integrity&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;Referential integrity&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/Form&gt;[CRLF] &lt;Form Name=&quot;Destination&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Parent Role&quot; Attribute=&quot;ParentRole&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/Form&gt;[CRLF]&lt;/Form&gt;
+ViewReference.ChildRole=Yes
+ViewReference.Stereotype=Yes
+ViewReference.DisplayName=No
+ViewReference.JoinExpression=No
+ViewReference.ParentRole=Yes
+ViewReference_SymbolLayout=&lt;Form&gt;[CRLF] &lt;Form Name=&quot;Source&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Child Role&quot; Attribute=&quot;ChildRole&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/Form&gt;[CRLF] &lt;Form Name=&quot;Center&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Stereotype&quot; Attribute=&quot;Stereotype&quot; Prefix=&quot;&amp;lt;&amp;lt;&quot; Suffix=&quot;&amp;gt;&amp;gt;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;ExclusiveChoice Name=&quot;Exclusive Choice&quot; Mandatory=&quot;No&quot; Display=&quot;HorizontalRadios&quot; &gt;[CRLF]   &lt;StandardAttribute Name=&quot;Name&quot; Attribute=&quot;DisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]   &lt;StandardAttribute Name=&quot;Join Expression&quot; Attribute=&quot;JoinExpression&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF]  &lt;/ExclusiveChoice&gt;[CRLF] &lt;/Form&gt;[CRLF] &lt;Form Name=&quot;Destination&quot; &gt;[CRLF]  &lt;StandardAttribute Name=&quot;Parent Role&quot; Attribute=&quot;ParentRole&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/Form&gt;[CRLF]&lt;/Form&gt;
+
+[DisplayPreferences\Symbol]
+
+[DisplayPreferences\Symbol\FRMEOBJ]
+STRNFont=Arial,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial,8,N
+DISPNAMEFont color=0, 0, 0
+LABLFont=Arial,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=6000
+Height=2000
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=64
+Brush gradient color=192 192 192
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 255 128 128
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\FRMELNK]
+CENTERFont=Arial,8,N
+CENTERFont color=0, 0, 0
+Line style=2
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 128 255
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\FILO]
+OBJSTRNFont=鏂板畫浣�,8,N
+OBJSTRNFont color=0, 0, 0
+DISPNAMEFont=鏂板畫浣�,8,N
+DISPNAMEFont color=0, 0, 0
+LCNMFont=鏂板畫浣�,8,N
+LCNMFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=Yes
+Keep center=Yes
+Keep size=No
+Width=2400
+Height=2400
+Brush color=255 255 255
+Fill Color=No
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 0 255
+Shadow color=192 192 192
+Shadow=-1
+
+[DisplayPreferences\Symbol\PDMPCKG]
+STRNFont=Arial,8,N
+STRNFont color=0, 0, 0
+DISPNAMEFont=Arial,8,N
+DISPNAMEFont color=0, 0, 0
+LABLFont=Arial,8,N
+LABLFont color=0, 0, 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4800
+Height=3600
+Brush color=255 255 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 178 178 178
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\TABL]
+STRNFont=鏂板畫浣�,20,N
+STRNFont color=0 0 0
+DISPNAMEFont=鏂板畫浣�,8,N
+DISPNAMEFont color=0 0 0
+OWNRDISPNAMEFont=鏂板畫浣�,8,N
+OWNRDISPNAMEFont color=0 0 0
+ColumnsFont=鏂板畫浣�,8,N
+ColumnsFont color=0 0 0
+TablePkColumnsFont=鏂板畫浣�,8,U
+TablePkColumnsFont color=0 0 0
+TableFkColumnsFont=鏂板畫浣�,8,N
+TableFkColumnsFont color=0 0 0
+KeysFont=鏂板畫浣�,8,N
+KeysFont color=0 0 0
+IndexesFont=鏂板畫浣�,8,N
+IndexesFont color=0 0 0
+TriggersFont=鏂板畫浣�,8,N
+TriggersFont color=0 0 0
+LABLFont=鏂板畫浣�,8,N
+LABLFont color=0 0 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=15000
+Height=7500
+Brush color=178 214 252
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 0 128 192
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\VIEW]
+STRNFont=Arial,8,N
+STRNFont color=0 0 0
+DISPNAMEFont=Arial,8,N
+DISPNAMEFont color=0 0 0
+OWNRDISPNAMEFont=鏂板畫浣�,8,N
+OWNRDISPNAMEFont color=0, 0, 0
+ColumnsFont=Arial,8,N
+ColumnsFont color=0 0 0
+TablePkColumnsFont=鏂板畫浣�,8,U
+TablePkColumnsFont color=0, 0, 0
+TableFkColumnsFont=鏂板畫浣�,8,N
+TableFkColumnsFont color=0, 0, 0
+TemporaryVTablesFont=Arial,8,N
+TemporaryVTablesFont color=0 0 0
+IndexesFont=Arial,8,N
+IndexesFont color=0 0 0
+LABLFont=Arial,8,N
+LABLFont color=0 0 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4800
+Height=4000
+Brush color=233 202 131
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 128 128
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\PROC]
+STRNFont=Arial,8,N
+STRNFont color=0 0 0
+DISPNAMEFont=Arial,8,N
+DISPNAMEFont color=0 0 0
+OWNRDISPNAMEFont=鏂板畫浣�,8,N
+OWNRDISPNAMEFont color=0, 0, 0
+LABLFont=Arial,8,N
+LABLFont color=0 0 0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Width=4000
+Height=1000
+Brush color=255 255 192
+Fill Color=Yes
+Brush style=6
+Brush bitmap mode=12
+Brush gradient mode=65
+Brush gradient color=255 255 255
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 108 0
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\REFR]
+SOURCEFont=鏂板畫浣�,8,N
+SOURCEFont color=0, 0, 0
+CENTERFont=鏂板畫浣�,8,N
+CENTERFont color=0, 0, 0
+DESTINATIONFont=鏂板畫浣�,8,N
+DESTINATIONFont color=0, 0, 0
+Line style=2
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 0 64
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\VREF]
+SOURCEFont=鏂板畫浣�,8,N
+SOURCEFont color=0, 0, 0
+CENTERFont=鏂板畫浣�,8,N
+CENTERFont color=0, 0, 0
+DESTINATIONFont=鏂板畫浣�,8,N
+DESTINATIONFont color=0, 0, 0
+Line style=2
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 0 64
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\USRDEPD]
+OBJXSTRFont=Arial,8,N
+OBJXSTRFont color=0 0 0
+Line style=0
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=2 0 128 0 64
+Shadow color=192 192 192
+Shadow=0
+
+[DisplayPreferences\Symbol\Free Symbol]
+Free TextFont=Arial,8,N
+Free TextFont color=0 0 0
+Line style=2
+AutoAdjustToText=Yes
+Keep aspect=No
+Keep center=No
+Keep size=No
+Brush color=255 255 255
+Fill Color=Yes
+Brush style=1
+Brush bitmap mode=12
+Brush gradient mode=0
+Brush gradient color=118 118 118
+Brush background image=
+Custom shape=
+Custom text mode=0
+Pen=1 0 128 64 0
+Shadow color=192 192 192
+Shadow=0</a:DisplayPreferences>
+<a:PaperSize>(8268, 11693)</a:PaperSize>
+<a:PageMargins>((315,354), (433,354))</a:PageMargins>
+<a:PageOrientation>1</a:PageOrientation>
+<a:PaperSource>15</a:PaperSource>
+</o:PhysicalDiagram>
+</c:PhysicalDiagrams>
+<c:DefaultDiagram>
+<o:PhysicalDiagram Ref="o1312"/>
+</c:DefaultDiagram>
+</o:Package>
+</c:Packages>
+<c:DefaultDiagram>
+<o:PhysicalDiagram Ref="o1255"/>
+</c:DefaultDiagram>
 </o:Package>
 </c:Packages>
 <c:DefaultDiagram>
 <o:PhysicalDiagram Ref="o4"/>
 </c:DefaultDiagram>
 <c:DefaultGroups>
-<o:Group Id="o1069">
+<o:Group Id="o1313">
 <a:ObjectID>5A0C0B4F-35BF-41A3-B94F-1B3262C5B9FD</a:ObjectID>
 <a:Name>PUBLIC</a:Name>
 <a:Code>PUBLIC</a:Code>
@@ -26755,13 +34115,13 @@
 </o:Group>
 </c:DefaultGroups>
 <c:TargetModels>
-<o:TargetModel Id="o1070">
+<o:TargetModel Id="o1314">
 <a:ObjectID>18BF8E0D-1EBB-48BD-94EA-EF6F678A6141</a:ObjectID>
 <a:Name>PostgreSQL 8</a:Name>
 <a:Code>PGSQL80</a:Code>
 <a:CreationDate>1696986408</a:CreationDate>
 <a:Creator>Administrator</a:Creator>
-<a:ModificationDate>1697506649</a:ModificationDate>
+<a:ModificationDate>1697557898</a:ModificationDate>
 <a:Modifier>WYH</a:Modifier>
 <a:TargetModelURL>file:///%_DBMS%/pgsql8.xdb</a:TargetModelURL>
 <a:TargetModelID>8AF15AEA-CCBC-4EDC-B468-7DB8DB5300B2</a:TargetModelID>
@@ -26770,13 +34130,13 @@
 <o:Shortcut Ref="o3"/>
 </c:SessionShortcuts>
 </o:TargetModel>
-<o:TargetModel Id="o1071">
+<o:TargetModel Id="o1315">
 <a:ObjectID>DED746DA-37F6-496B-B1D4-08BABD79D180</a:ObjectID>
 <a:Name>闆嗕腑鍩硅杩愯绠$悊绯荤粺</a:Name>
 <a:Code>闆嗕腑鍩硅杩愯绠$悊绯荤粺</a:Code>
 <a:CreationDate>1697117528</a:CreationDate>
 <a:Creator>WYH</a:Creator>
-<a:ModificationDate>1697507435</a:ModificationDate>
+<a:ModificationDate>1697557919</a:ModificationDate>
 <a:Modifier>WYH</a:Modifier>
 <a:TargetModelURL>file:///.</a:TargetModelURL>
 <a:TargetModelID>FDB182A9-5301-43B6-BE6D-A8481D51F4D0</a:TargetModelID>

--
Gitblit v1.9.1