From 002014b8c6f2398d4b6a7a44714399ae93a14ab7 Mon Sep 17 00:00:00 2001
From: wyb <156296250@qq.com>
Date: 星期六, 03 八月 2024 10:58:19 +0800
Subject: [PATCH] Merge branch 'master' of ssh://115.28.86.8:29418/~admin/ef-p_pro_24_07_23

---
 Server/宗玛帝/log/EF-P日志_宗玛帝_202040731.doc  |    0 
 Client/李颖怡/log/日志模板_李颖怡_20240801.doc     |    0 
 Client/胡宵/log/历史查询分析_胡宵_2024.8.1.doc     |    0 
 Client/何小豪/code/quanxian.sql             |   56 ++++++++++++++
 Client/范蓉/document/设备结构体.txt             |  150 +++++++++++++++++++++++++++++++++++++
 Client/范蓉/log/范蓉_2024.8.2.doc            |    0 
 Server/宗玛帝/log/EF-P日志_宗玛帝_202040801.doc  |    0 
 Client/何小豪/code/test_tcp_server_0620.rar |    0 
 Client/范蓉/document/生产计划和设备管理 .docx       |    0 
 Server/杜润昆/log/日报_杜润昆_0802.doc           |    0 
 Client/张健钰/log/地图标注日志_张健钰_0802.docx      |    0 
 Client/胡宵/log/~WRL0001.tmp               |    0 
 Server/袁晨琳/log/日志_袁晨琳_0802.doc           |    0 
 Client/胡宵/log/历史查询分析_胡宵_2024.8.2.doc     |    0 
 Server/宗玛帝/log/EF-P日志_宗玛帝_202040802.doc  |    0 
 /dev/null                                |    0 
 Client/何小豪/code/Permissions.rar          |    0 
 Client/何小豪/log/日志_何小豪_0802.doc           |    0 
 Server/吴泽林/log/日报_吴泽林_0801.doc           |    0 
 Server/宗玛帝/log/~WRL3433.tmp              |    0 
 20 files changed, 206 insertions(+), 0 deletions(-)

diff --git "a/Client/\344\275\225\345\260\217\350\261\252/code/Permissions.rar" "b/Client/\344\275\225\345\260\217\350\261\252/code/Permissions.rar"
new file mode 100644
index 0000000..1e44c85
--- /dev/null
+++ "b/Client/\344\275\225\345\260\217\350\261\252/code/Permissions.rar"
Binary files differ
diff --git "a/Client/\344\275\225\345\260\217\350\261\252/code/quanxian.sql" "b/Client/\344\275\225\345\260\217\350\261\252/code/quanxian.sql"
new file mode 100644
index 0000000..210dae1
--- /dev/null
+++ "b/Client/\344\275\225\345\260\217\350\261\252/code/quanxian.sql"
@@ -0,0 +1,56 @@
+-- --------------------------------------------------------
+-- 涓绘満:                           127.0.0.1
+-- 鏈嶅姟鍣ㄧ増鏈�:                        8.0.37 - MySQL Community Server - GPL
+-- 鏈嶅姟鍣ㄦ搷浣滅郴缁�:                      Win64
+-- HeidiSQL 鐗堟湰:                  12.6.0.6765
+-- --------------------------------------------------------
+
+/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
+/*!40101 SET NAMES utf8 */;
+/*!50503 SET NAMES utf8mb4 */;
+/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
+/*!40103 SET TIME_ZONE='+00:00' */;
+/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
+/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
+/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
+
+
+-- 瀵煎嚭 uesr 鐨勬暟鎹簱缁撴瀯
+DROP DATABASE IF EXISTS `uesr`;
+CREATE DATABASE IF NOT EXISTS `uesr` /*!40100 DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci */ /*!80016 DEFAULT ENCRYPTION='N' */;
+USE `uesr`;
+
+-- 瀵煎嚭  琛� uesr.permissions 缁撴瀯
+DROP TABLE IF EXISTS `permissions`;
+CREATE TABLE IF NOT EXISTS `permissions` (
+  `user_id` int NOT NULL COMMENT '鐢ㄦ埛id',
+  `user_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '鐢ㄦ埛鍚�',
+  `role` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '瑙掕壊',
+  KEY `FK_permissions_roles` (`role`),
+  CONSTRAINT `FK_permissions_roles` FOREIGN KEY (`role`) REFERENCES `roles` (`role`) ON DELETE SET NULL ON UPDATE SET NULL
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
+
+-- 鏁版嵁瀵煎嚭琚彇娑堥�夋嫨銆�
+
+-- 瀵煎嚭  琛� uesr.roles 缁撴瀯
+DROP TABLE IF EXISTS `roles`;
+CREATE TABLE IF NOT EXISTS `roles` (
+  `role` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '瑙掕壊',
+  `Permissions_admin` tinyint unsigned DEFAULT '0' COMMENT '鏉冮檺绠$悊鏉冮檺',
+  `Permissions_query` tinyint unsigned DEFAULT '0' COMMENT '鍘嗗彶鏌ヨ鍒嗘瀽鏉冮檺',
+  `Permissions_alert` tinyint unsigned DEFAULT '0' COMMENT '璀︽姤绠$悊鏉冮檺',
+  `Permissions_Log` tinyint unsigned DEFAULT '0' COMMENT '鏃ュ織鏌ヨ鏉冮檺',
+  `Permissions_map` tinyint unsigned DEFAULT '0' COMMENT '鍦板浘鏍囨敞鏉冮檺',
+  `Permissions_produce` tinyint unsigned DEFAULT '0' COMMENT '鐢熶骇璁″垝鏉冮檺',
+  `Permissions_equipment` tinyint unsigned DEFAULT '0' COMMENT '璁惧绠$悊鏉冮檺',
+  `Permissions_version` tinyint unsigned DEFAULT '0' COMMENT '鐗堟湰绠$悊鏉冮檺',
+  KEY `role` (`role`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
+
+-- 鏁版嵁瀵煎嚭琚彇娑堥�夋嫨銆�
+
+/*!40103 SET TIME_ZONE=IFNULL(@OLD_TIME_ZONE, 'system') */;
+/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
+/*!40014 SET FOREIGN_KEY_CHECKS=IFNULL(@OLD_FOREIGN_KEY_CHECKS, 1) */;
+/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
+/*!40111 SET SQL_NOTES=IFNULL(@OLD_SQL_NOTES, 1) */;
diff --git "a/Client/\344\275\225\345\260\217\350\261\252/code/test_tcp_server_0620.rar" "b/Client/\344\275\225\345\260\217\350\261\252/code/test_tcp_server_0620.rar"
new file mode 100644
index 0000000..093f5c5
--- /dev/null
+++ "b/Client/\344\275\225\345\260\217\350\261\252/code/test_tcp_server_0620.rar"
Binary files differ
diff --git "a/Client/\344\275\225\345\260\217\350\261\252/log/\346\227\245\345\277\227_\344\275\225\345\260\217\350\261\252_0802.doc" "b/Client/\344\275\225\345\260\217\350\261\252/log/\346\227\245\345\277\227_\344\275\225\345\260\217\350\261\252_0802.doc"
new file mode 100644
index 0000000..3d327f1
--- /dev/null
+++ "b/Client/\344\275\225\345\260\217\350\261\252/log/\346\227\245\345\277\227_\344\275\225\345\260\217\350\261\252_0802.doc"
Binary files differ
diff --git "a/Client/\345\274\240\345\201\245\351\222\260/log/\345\234\260\345\233\276\346\240\207\346\263\250\346\227\245\345\277\227_\345\274\240\345\201\245\351\222\260_0802.docx" "b/Client/\345\274\240\345\201\245\351\222\260/log/\345\234\260\345\233\276\346\240\207\346\263\250\346\227\245\345\277\227_\345\274\240\345\201\245\351\222\260_0802.docx"
new file mode 100644
index 0000000..7b79b67
--- /dev/null
+++ "b/Client/\345\274\240\345\201\245\351\222\260/log/\345\234\260\345\233\276\346\240\207\346\263\250\346\227\245\345\277\227_\345\274\240\345\201\245\351\222\260_0802.docx"
Binary files differ
diff --git "a/Client/\346\235\216\351\242\226\346\200\241/log/\346\227\245\345\277\227\346\250\241\346\235\277_\346\235\216\351\242\226\346\200\241_20240801.doc" "b/Client/\346\235\216\351\242\226\346\200\241/log/\346\227\245\345\277\227\346\250\241\346\235\277_\346\235\216\351\242\226\346\200\241_20240801.doc"
new file mode 100644
index 0000000..e5f2d3f
--- /dev/null
+++ "b/Client/\346\235\216\351\242\226\346\200\241/log/\346\227\245\345\277\227\346\250\241\346\235\277_\346\235\216\351\242\226\346\200\241_20240801.doc"
Binary files differ
diff --git "a/Client/\350\203\241\345\256\265/log/~WRL1624.tmp" "b/Client/\350\203\241\345\256\265/log/~WRL0001.tmp"
similarity index 81%
rename from "Client/\350\203\241\345\256\265/log/~WRL1624.tmp"
rename to "Client/\350\203\241\345\256\265/log/~WRL0001.tmp"
index 10f383e..3d300fb 100644
--- "a/Client/\350\203\241\345\256\265/log/~WRL1624.tmp"
+++ "b/Client/\350\203\241\345\256\265/log/~WRL0001.tmp"
Binary files differ
diff --git "a/Client/\350\203\241\345\256\265/log/~WRL1624.tmp" "b/Client/\350\203\241\345\256\265/log/\345\216\206\345\217\262\346\237\245\350\257\242\345\210\206\346\236\220_\350\203\241\345\256\265_2024.8.1.doc"
similarity index 80%
copy from "Client/\350\203\241\345\256\265/log/~WRL1624.tmp"
copy to "Client/\350\203\241\345\256\265/log/\345\216\206\345\217\262\346\237\245\350\257\242\345\210\206\346\236\220_\350\203\241\345\256\265_2024.8.1.doc"
index 10f383e..3d300fb 100644
--- "a/Client/\350\203\241\345\256\265/log/~WRL1624.tmp"
+++ "b/Client/\350\203\241\345\256\265/log/\345\216\206\345\217\262\346\237\245\350\257\242\345\210\206\346\236\220_\350\203\241\345\256\265_2024.8.1.doc"
Binary files differ
diff --git "a/Client/\350\203\241\345\256\265/log/~WRL1624.tmp" "b/Client/\350\203\241\345\256\265/log/\345\216\206\345\217\262\346\237\245\350\257\242\345\210\206\346\236\220_\350\203\241\345\256\265_2024.8.2.doc"
similarity index 80%
copy from "Client/\350\203\241\345\256\265/log/~WRL1624.tmp"
copy to "Client/\350\203\241\345\256\265/log/\345\216\206\345\217\262\346\237\245\350\257\242\345\210\206\346\236\220_\350\203\241\345\256\265_2024.8.2.doc"
index 10f383e..0a8a47f 100644
--- "a/Client/\350\203\241\345\256\265/log/~WRL1624.tmp"
+++ "b/Client/\350\203\241\345\256\265/log/\345\216\206\345\217\262\346\237\245\350\257\242\345\210\206\346\236\220_\350\203\241\345\256\265_2024.8.2.doc"
Binary files differ
diff --git "a/Client/\350\214\203\350\223\211/document/\347\224\237\344\272\247\350\256\241\345\210\222\345\222\214\350\256\276\345\244\207\347\256\241\347\220\206 .docx" "b/Client/\350\214\203\350\223\211/document/\347\224\237\344\272\247\350\256\241\345\210\222\345\222\214\350\256\276\345\244\207\347\256\241\347\220\206 .docx"
index 494ceed..4338e51 100644
--- "a/Client/\350\214\203\350\223\211/document/\347\224\237\344\272\247\350\256\241\345\210\222\345\222\214\350\256\276\345\244\207\347\256\241\347\220\206 .docx"
+++ "b/Client/\350\214\203\350\223\211/document/\347\224\237\344\272\247\350\256\241\345\210\222\345\222\214\350\256\276\345\244\207\347\256\241\347\220\206 .docx"
Binary files differ
diff --git "a/Client/\350\214\203\350\223\211/document/\350\256\276\345\244\207\347\273\223\346\236\204\344\275\223.txt" "b/Client/\350\214\203\350\223\211/document/\350\256\276\345\244\207\347\273\223\346\236\204\344\275\223.txt"
new file mode 100644
index 0000000..1657f13
--- /dev/null
+++ "b/Client/\350\214\203\350\223\211/document/\350\256\276\345\244\207\347\273\223\346\236\204\344\275\223.txt"
@@ -0,0 +1,150 @@
+enum TypeInfo{
+    DEVICESELECT_REQ, //鏌ョ湅璁惧璇锋眰
+    DEVICESELECT_RES, //鏌ョ湅璁惧鍝嶅簲
+
+    DEVICEADD_REQ, //澧炲姞璁惧璇锋眰
+    DEVICEADD_RES, //澧炲姞璁惧鍝嶅簲
+
+    DEVICEDELETE_REQ, //鍒犻櫎璁惧璇锋眰
+    DEVICEDELETE_RES, //鍒犻櫎璁惧鍝嶅簲
+
+    DEVICEUPDATE_REQ, //淇敼璁惧璇锋眰
+    DEVICEUPDATE_RES, //淇敼璁惧鍝嶅簲
+
+    DEVICESELECTALL_REQ,//鏌ョ湅鍏ㄩ儴璁惧璇锋眰
+    DEVICESELECTALL_RES//鏌ョ湅鍏ㄩ儴璁惧鍝嶅簲
+};
+
+struct Head
+{
+    int type;//鍖哄垎涓嶅悓鍔熻兘缁撴瀯浣�
+    int lenth;//琛ㄧず褰撳墠灏佸寘闀垮害锛屼富瑕佽В鍐冲勾绮樺寘銆佹媶鍖呯殑鎿嶄綔
+  //  int flag;
+};
+
+//璁惧淇℃伅
+struct DeviceData {
+    int   id;  // 璁惧缂栧彿
+    char name[32];  // 璁惧鍚嶇О
+    double longitude; // 璁惧鎵�鍦ㄤ綅缃紙缁忓害锛�
+    double latitude;  //璁惧鎵�鍦ㄤ綅缃紙绾害锛�
+    int status;  // 璁惧鐘舵�� 0锛氳澶囨甯� 1锛氳澶囧紓甯� 2锛氳澶囨崯鍧�
+    double currentEnvironment_humidity;//褰撳墠鐢熶骇鐜婀垮害
+    double currentEnvironment_temperature;//褰撳墠鐢熶骇鐜娓╁害
+};
+
+//鍏ㄩ儴璁惧鏌ヨ璇锋眰缁撴瀯浣�
+struct DeviceSelectAllReq
+{
+    Head head;
+    DeviceData dev;
+    DeviceSelectAllReq() {//鏋勯�犲嚱鏁�
+        head.type = DEVICESELECTALL_REQ;
+        head.lenth = sizeof(DeviceSelectAllReq);
+    }
+};
+
+
+//鍏ㄩ儴璁惧鏌ヨ鍝嶅簲缁撴瀯浣�
+struct DeviceSelectAllRes
+{
+    Head head;
+    int state;//0锛氭煡璇㈡垚鍔� 1锛氭煡璇㈠け璐�
+    DeviceData dev[0]; // 鏌旀�ф暟缁�
+    DeviceSelectAllRes() {
+        head.type = DEVICESELECTALL_RES;
+        head.lenth = sizeof(DeviceSelectAllRes);
+    }
+};
+//璁惧鏌ヨ璇锋眰缁撴瀯浣�
+struct DeviceSelectReq
+{
+    Head head;
+    DeviceData dev;
+    DeviceSelectReq() {//鏋勯�犲嚱鏁�
+        head.type = DEVICESELECT_REQ;
+        head.lenth = sizeof(DeviceSelectReq);
+    }
+};
+
+
+//璁惧鏌ヨ鍝嶅簲缁撴瀯浣�
+struct DeviceSelectRes
+{
+    Head head;
+    int state;//0锛氭煡璇㈡垚鍔� 1锛氭煡璇㈠け璐�
+    DeviceData dev[0]; // 鏌旀�ф暟缁�
+    DeviceSelectRes() {
+        head.type = DEVICESELECT_RES;
+        head.lenth = sizeof(DeviceSelectRes);
+    }
+};
+
+//璁惧澧炲姞璇锋眰缁撴瀯浣�
+struct DeviceAddReq
+{
+    Head head;
+    DeviceData dev;
+    DeviceAddReq() {
+        head.type = DEVICEADD_REQ;
+        head.lenth = sizeof(DeviceAddReq);
+    }
+};
+
+//璁惧澧炲姞鍝嶅簲缁撴瀯浣�
+struct DeviceAddRes
+{
+    Head head;
+    int state;//0锛氭坊鍔犳垚鍔� 1锛氬け璐�
+    DeviceAddRes() {
+        head.type = DEVICEADD_RES;
+        head.lenth = sizeof(DeviceAddRes);
+    }
+};
+
+//璁惧鍒犻櫎璇锋眰缁撴瀯浣�
+struct DeviceDeleteReq
+{
+    Head head;
+    DeviceData dev;
+    DeviceDeleteReq() {
+        head.type = DEVICEDELETE_REQ;
+        head.lenth = sizeof(DeviceDeleteReq);
+    }
+};
+
+//璁惧鍒犻櫎鍝嶅簲缁撴瀯浣�
+struct DeviceDeleteRes
+{
+    Head head;
+    int state;//0锛氬垹闄ゆ垚鍔� 1锛氬垹闄ゅけ璐�
+    DeviceDeleteRes() {
+        head.type = DEVICEDELETE_RES;
+        head.lenth = sizeof(DeviceDeleteRes);
+    }
+};
+
+
+//璁惧淇敼鏇存柊璇锋眰缁撴瀯浣�
+struct DeviceUpdateReq
+{
+    Head head;
+    DeviceData dev;
+    DeviceUpdateReq() {
+        head.type = DEVICEUPDATE_REQ;
+        head.lenth = sizeof(DeviceUpdateReq);
+    }
+};
+
+
+//璁惧淇敼鏇存柊鍝嶅簲缁撴瀯浣�
+struct DeviceUpdateRes
+{
+    Head head;
+    DeviceData dev;
+    int state;//0锛氫慨鏀规垚鍔� 1锛氫慨鏀瑰け璐�
+    DeviceUpdateRes() {
+        head.type = DEVICEUPDATE_RES;
+        head.lenth = sizeof(DeviceUpdateRes);
+    }
+};
\ No newline at end of file
diff --git "a/Client/\350\214\203\350\223\211/log/\350\214\203\350\223\211_2024.8.2.doc" "b/Client/\350\214\203\350\223\211/log/\350\214\203\350\223\211_2024.8.2.doc"
new file mode 100644
index 0000000..92e39bf
--- /dev/null
+++ "b/Client/\350\214\203\350\223\211/log/\350\214\203\350\223\211_2024.8.2.doc"
Binary files differ
diff --git "a/Server/\345\220\264\346\263\275\346\236\227/log/\346\227\245\346\212\245_\345\220\264\346\263\275\346\236\227_0801.doc" "b/Server/\345\220\264\346\263\275\346\236\227/log/\346\227\245\346\212\245_\345\220\264\346\263\275\346\236\227_0801.doc"
new file mode 100644
index 0000000..eb6c5df
--- /dev/null
+++ "b/Server/\345\220\264\346\263\275\346\236\227/log/\346\227\245\346\212\245_\345\220\264\346\263\275\346\236\227_0801.doc"
Binary files differ
diff --git "a/Client/\350\203\241\345\256\265/log/~WRL1624.tmp" "b/Server/\345\256\227\347\216\233\345\270\235/log/EF-P\346\227\245\345\277\227_\345\256\227\347\216\233\345\270\235_202040731.doc"
similarity index 76%
copy from "Client/\350\203\241\345\256\265/log/~WRL1624.tmp"
copy to "Server/\345\256\227\347\216\233\345\270\235/log/EF-P\346\227\245\345\277\227_\345\256\227\347\216\233\345\270\235_202040731.doc"
index 10f383e..e5e515f 100644
--- "a/Client/\350\203\241\345\256\265/log/~WRL1624.tmp"
+++ "b/Server/\345\256\227\347\216\233\345\270\235/log/EF-P\346\227\245\345\277\227_\345\256\227\347\216\233\345\270\235_202040731.doc"
Binary files differ
diff --git "a/Client/\350\203\241\345\256\265/log/~WRL1624.tmp" "b/Server/\345\256\227\347\216\233\345\270\235/log/EF-P\346\227\245\345\277\227_\345\256\227\347\216\233\345\270\235_202040801.doc"
similarity index 76%
copy from "Client/\350\203\241\345\256\265/log/~WRL1624.tmp"
copy to "Server/\345\256\227\347\216\233\345\270\235/log/EF-P\346\227\245\345\277\227_\345\256\227\347\216\233\345\270\235_202040801.doc"
index 10f383e..f772c37 100644
--- "a/Client/\350\203\241\345\256\265/log/~WRL1624.tmp"
+++ "b/Server/\345\256\227\347\216\233\345\270\235/log/EF-P\346\227\245\345\277\227_\345\256\227\347\216\233\345\270\235_202040801.doc"
Binary files differ
diff --git "a/Client/\350\203\241\345\256\265/log/~WRL1624.tmp" "b/Server/\345\256\227\347\216\233\345\270\235/log/EF-P\346\227\245\345\277\227_\345\256\227\347\216\233\345\270\235_202040802.doc"
similarity index 74%
copy from "Client/\350\203\241\345\256\265/log/~WRL1624.tmp"
copy to "Server/\345\256\227\347\216\233\345\270\235/log/EF-P\346\227\245\345\277\227_\345\256\227\347\216\233\345\270\235_202040802.doc"
index 10f383e..32bbb70 100644
--- "a/Client/\350\203\241\345\256\265/log/~WRL1624.tmp"
+++ "b/Server/\345\256\227\347\216\233\345\270\235/log/EF-P\346\227\245\345\277\227_\345\256\227\347\216\233\345\270\235_202040802.doc"
Binary files differ
diff --git "a/Client/\350\203\241\345\256\265/log/~WRL1624.tmp" "b/Server/\345\256\227\347\216\233\345\270\235/log/~WRL3433.tmp"
similarity index 76%
copy from "Client/\350\203\241\345\256\265/log/~WRL1624.tmp"
copy to "Server/\345\256\227\347\216\233\345\270\235/log/~WRL3433.tmp"
index 10f383e..f772c37 100644
--- "a/Client/\350\203\241\345\256\265/log/~WRL1624.tmp"
+++ "b/Server/\345\256\227\347\216\233\345\270\235/log/~WRL3433.tmp"
Binary files differ
diff --git "a/Server/\346\235\234\346\266\246\346\230\206/log/\346\227\245\346\212\245_\346\235\234\346\266\246\346\230\206_0802.doc" "b/Server/\346\235\234\346\266\246\346\230\206/log/\346\227\245\346\212\245_\346\235\234\346\266\246\346\230\206_0802.doc"
new file mode 100644
index 0000000..acdec9d
--- /dev/null
+++ "b/Server/\346\235\234\346\266\246\346\230\206/log/\346\227\245\346\212\245_\346\235\234\346\266\246\346\230\206_0802.doc"
Binary files differ
diff --git "a/Client/\350\203\241\345\256\265/log/~WRL1624.tmp" "b/Server/\350\242\201\346\231\250\347\220\263/log/\346\227\245\345\277\227_\350\242\201\346\231\250\347\220\263_0802.doc"
similarity index 71%
copy from "Client/\350\203\241\345\256\265/log/~WRL1624.tmp"
copy to "Server/\350\242\201\346\231\250\347\220\263/log/\346\227\245\345\277\227_\350\242\201\346\231\250\347\220\263_0802.doc"
index 10f383e..bfe5533 100644
--- "a/Client/\350\203\241\345\256\265/log/~WRL1624.tmp"
+++ "b/Server/\350\242\201\346\231\250\347\220\263/log/\346\227\245\345\277\227_\350\242\201\346\231\250\347\220\263_0802.doc"
Binary files differ
diff --git "a/\345\217\202\350\200\203\346\226\207\346\241\243/\351\234\200\346\261\202\345\210\206\346\236\220\346\250\241\346\235\277/\347\224\237\344\272\247\350\256\241\345\210\222\345\222\214\350\256\276\345\244\207\347\256\241\347\220\206.docx" "b/\345\217\202\350\200\203\346\226\207\346\241\243/\351\234\200\346\261\202\345\210\206\346\236\220\346\250\241\346\235\277/\347\224\237\344\272\247\350\256\241\345\210\222\345\222\214\350\256\276\345\244\207\347\256\241\347\220\206.docx"
deleted file mode 100644
index 4f2ff12..0000000
--- "a/\345\217\202\350\200\203\346\226\207\346\241\243/\351\234\200\346\261\202\345\210\206\346\236\220\346\250\241\346\235\277/\347\224\237\344\272\247\350\256\241\345\210\222\345\222\214\350\256\276\345\244\207\347\256\241\347\220\206.docx"
+++ /dev/null
Binary files differ

--
Gitblit v1.8.0