2021-002-ljh-001.sql 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. use dcp;
  2. /*
  3. Navicat Premium Data Transfer
  4. Source Server : 10.0.1.159_3306
  5. Source Server Type : MySQL
  6. Source Server Version : 50722
  7. Source Host : 10.0.1.159:3306
  8. Source Schema : dcp
  9. Target Server Type : MySQL
  10. Target Server Version : 50722
  11. File Encoding : 65001
  12. Date: 11/01/2021 13:49:28
  13. */
  14. SET NAMES utf8mb4;
  15. SET FOREIGN_KEY_CHECKS = 0;
  16. -- ----------------------------
  17. -- Table structure for customer_file
  18. -- ----------------------------
  19. DROP TABLE IF EXISTS `customer_file`;
  20. CREATE TABLE `customer_file` (
  21. `id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '主键id',
  22. `file_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '文件名',
  23. `file_path` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '文件地址',
  24. `file_type` varchar(2048) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '文件类型',
  25. `file_name_old` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '原始文件名称',
  26. `status` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '状态',
  27. `create_by` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人',
  28. `create_date` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
  29. `update_by` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '更新人',
  30. `update_date` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
  31. `reserve_one` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备用字段1',
  32. `reserve_two` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备用字段2',
  33. `reserve_three` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备用字段3',
  34. `reserve_four` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备用字段4',
  35. `reserve_five` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备用字段5',
  36. PRIMARY KEY (`id`) USING BTREE
  37. ) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '客服模块-文件' ROW_FORMAT = Dynamic;
  38. -- ----------------------------
  39. -- Table structure for customer_log
  40. -- ----------------------------
  41. DROP TABLE IF EXISTS `customer_log`;
  42. CREATE TABLE `customer_log` (
  43. `id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '主键id',
  44. `user_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '用户id',
  45. `login_type` varchar(2048) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '登陆状态',
  46. `status` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '状态',
  47. `create_by` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人',
  48. `create_date` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
  49. `update_by` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '更新人',
  50. `update_date` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
  51. `reserve_one` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备用字段1',
  52. `reserve_two` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备用字段2',
  53. `reserve_three` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备用字段3',
  54. `reserve_four` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备用字段4',
  55. `reserve_five` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备用字段5',
  56. PRIMARY KEY (`id`) USING BTREE
  57. ) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '客服模块-登陆记录表' ROW_FORMAT = Dynamic;
  58. -- ----------------------------
  59. -- Table structure for customer_message
  60. -- ----------------------------
  61. DROP TABLE IF EXISTS `customer_message`;
  62. CREATE TABLE `customer_message` (
  63. `id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '主键id',
  64. `sender_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '发送人Id',
  65. `sender_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '发送人名称',
  66. `send_content` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '发送的数据',
  67. `receiver_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '接收人id',
  68. `receiver_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '接收人名称',
  69. `sending_status` varchar(500) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '发送状态',
  70. `receiving_status` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '接收状态',
  71. `message_type` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '消息类型',
  72. `status` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '状态',
  73. `create_by` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人',
  74. `create_date` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
  75. `update_by` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '更新人',
  76. `update_date` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
  77. `reserve_one` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备用字段1',
  78. `reserve_two` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备用字段2',
  79. `reserve_three` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备用字段3',
  80. `reserve_four` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备用字段4',
  81. `reserve_five` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备用字段5',
  82. PRIMARY KEY (`id`) USING BTREE
  83. ) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '客服模块-聊天记录表' ROW_FORMAT = Dynamic;
  84. -- ----------------------------
  85. -- Table structure for customer_operation
  86. -- ----------------------------
  87. DROP TABLE IF EXISTS `customer_operation`;
  88. CREATE TABLE `customer_operation` (
  89. `id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '主键id',
  90. `user_id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '用户ID',
  91. `language` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '语言类型',
  92. `model_type` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '模块类型',
  93. `model_content` varchar(2048) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '模块内容',
  94. `order_num` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '排序',
  95. `operation_type` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '设置类型',
  96. `model_name` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '模块名称',
  97. `link_path` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '链接地址',
  98. `image_path` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '图片地址',
  99. `status` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '状态',
  100. `create_by` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人',
  101. `create_date` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
  102. `update_by` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '更新人',
  103. `update_date` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
  104. `reserve_one` varchar(1024) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备用字段1',
  105. `reserve_two` varchar(1024) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备用字段2',
  106. `reserve_three` varchar(1024) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备用字段3',
  107. `reserve_four` varchar(1024) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备用字段4',
  108. `reserve_five` varchar(1024) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备用字段5',
  109. PRIMARY KEY (`id`) USING BTREE
  110. ) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '客服模块-聊天记录表' ROW_FORMAT = Dynamic;
  111. -- ----------------------------
  112. -- Table structure for customer_quick_reply
  113. -- ----------------------------
  114. DROP TABLE IF EXISTS `customer_quick_reply`;
  115. CREATE TABLE `customer_quick_reply` (
  116. `id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '主键id',
  117. `sender_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '发送人Id',
  118. `sender_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '发送人名称',
  119. `send_content` varchar(2048) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '发送的数据',
  120. `receiver_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '接收人id',
  121. `receiver_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '接收人名称',
  122. `sending_status` varchar(500) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '发送状态',
  123. `receiving_status` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '接收状态',
  124. `message_type` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '消息类型',
  125. `status` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '状态',
  126. `create_by` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人',
  127. `create_date` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
  128. `update_by` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '更新人',
  129. `update_date` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
  130. `reserve_one` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备用字段1',
  131. `reserve_two` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备用字段2',
  132. `reserve_three` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备用字段3',
  133. `reserve_four` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备用字段4',
  134. `reserve_five` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备用字段5',
  135. PRIMARY KEY (`id`) USING BTREE
  136. ) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '客服模块-聊天记录表' ROW_FORMAT = Dynamic;
  137. -- ----------------------------
  138. -- Table structure for customer_robert_keyword
  139. -- ----------------------------
  140. DROP TABLE IF EXISTS `customer_robert_keyword`;
  141. CREATE TABLE `customer_robert_keyword` (
  142. `id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '主键id',
  143. `sender_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '发送人Id',
  144. `sender_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '发送人名称',
  145. `send_content` varchar(2048) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '发送的数据',
  146. `receiver_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '接收人id',
  147. `receiver_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '接收人名称',
  148. `sending_status` varchar(500) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '发送状态',
  149. `receiving_status` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '接收状态',
  150. `message_type` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '消息类型',
  151. `status` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '状态',
  152. `create_by` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人',
  153. `create_date` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
  154. `update_by` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '更新人',
  155. `update_date` datetime(0) NULL DEFAULT NULL COMMENT '更新时间',
  156. `reserve_one` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备用字段1',
  157. `reserve_two` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备用字段2',
  158. `reserve_three` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备用字段3',
  159. `reserve_four` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备用字段4',
  160. `reserve_five` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备用字段5',
  161. PRIMARY KEY (`id`) USING BTREE
  162. ) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '客服模块-聊天记录表' ROW_FORMAT = Dynamic;
  163. SET FOREIGN_KEY_CHECKS = 1;
  164. INSERT INTO `dcp`.`customer_operation`(`id`, `user_id`, `language`, `model_type`, `model_content`, `order_num`, `operation_type`, `model_name`, `link_path`, `image_path`, `status`, `create_by`, `create_date`, `update_by`, `update_date`, `reserve_one`, `reserve_two`, `reserve_three`, `reserve_four`, `reserve_five`) VALUES ('316b86a640d311eb83f98cec4b79dd1c', 'DEFAULT', 'ZH', 'COL', '账号管理', '2', 'FIRSTTISHI', '账号管理', NULL, 'helpCenter/yonghu.jpg', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
  165. INSERT INTO `dcp`.`customer_operation`(`id`, `user_id`, `language`, `model_type`, `model_content`, `order_num`, `operation_type`, `model_name`, `link_path`, `image_path`, `status`, `create_by`, `create_date`, `update_by`, `update_date`, `reserve_one`, `reserve_two`, `reserve_three`, `reserve_four`, `reserve_five`) VALUES ('316b86a640d311eb83f98cec4b79dd1d', 'DEFAULT', 'ZH', 'COL', '项目管理', '3', 'FIRSTTISHI', '项目管理', NULL, 'helpCenter/shuji.jpg', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
  166. INSERT INTO `dcp`.`customer_operation`(`id`, `user_id`, `language`, `model_type`, `model_content`, `order_num`, `operation_type`, `model_name`, `link_path`, `image_path`, `status`, `create_by`, `create_date`, `update_by`, `update_date`, `reserve_one`, `reserve_two`, `reserve_three`, `reserve_four`, `reserve_five`) VALUES ('316b86a640d311eb83f98cec4b79dd1e', 'DEFAULT', 'ZH', 'COL', '平台问题', '4', 'FIRSTTISHI', '平台问题', NULL, 'helpCenter/diannao.png', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
  167. INSERT INTO `dcp`.`customer_operation`(`id`, `user_id`, `language`, `model_type`, `model_content`, `order_num`, `operation_type`, `model_name`, `link_path`, `image_path`, `status`, `create_by`, `create_date`, `update_by`, `update_date`, `reserve_one`, `reserve_two`, `reserve_three`, `reserve_four`, `reserve_five`) VALUES ('316b86a640d311eb83f98cec4b79dd1f', 'DEFAULT', 'ZH', 'ML', 'Hi,我是能联全球的智能客服助手“小E”,很高兴为您服务。如您想咨询平台的相关问题,可点击下方快捷问题列表,或者直接问我哦~', '1', 'FIRSTTISHI', '', NULL, 'helpCenter/A.png', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
  168. INSERT INTO `dcp`.`customer_operation`(`id`, `user_id`, `language`, `model_type`, `model_content`, `order_num`, `operation_type`, `model_name`, `link_path`, `image_path`, `status`, `create_by`, `create_date`, `update_by`, `update_date`, `reserve_one`, `reserve_two`, `reserve_three`, `reserve_four`, `reserve_five`) VALUES ('316b86a640d311eb83f98cec4b79dd2c', 'DEFAULT', 'EN', 'COL', 'Account Management', '2', 'FIRSTTISHI', 'Account Management', NULL, 'helpCenter/yonghu.jpg', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
  169. INSERT INTO `dcp`.`customer_operation`(`id`, `user_id`, `language`, `model_type`, `model_content`, `order_num`, `operation_type`, `model_name`, `link_path`, `image_path`, `status`, `create_by`, `create_date`, `update_by`, `update_date`, `reserve_one`, `reserve_two`, `reserve_three`, `reserve_four`, `reserve_five`) VALUES ('316b86a640d311eb83f98cec4b79dd2d', 'DEFAULT', 'EN', 'COL', 'Project Management', '3', 'FIRSTTISHI', 'Project Management', NULL, 'helpCenter/shuji.jpg', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
  170. INSERT INTO `dcp`.`customer_operation`(`id`, `user_id`, `language`, `model_type`, `model_content`, `order_num`, `operation_type`, `model_name`, `link_path`, `image_path`, `status`, `create_by`, `create_date`, `update_by`, `update_date`, `reserve_one`, `reserve_two`, `reserve_three`, `reserve_four`, `reserve_five`) VALUES ('316b86a640d311eb83f98cec4b79dd2e', 'DEFAULT', 'EN', 'COL', 'Platform Issues', '4', 'FIRSTTISHI', 'Platform Issues', NULL, 'helpCenter/diannao.png', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
  171. INSERT INTO `dcp`.`customer_operation`(`id`, `user_id`, `language`, `model_type`, `model_content`, `order_num`, `operation_type`, `model_name`, `link_path`, `image_path`, `status`, `create_by`, `create_date`, `update_by`, `update_date`, `reserve_one`, `reserve_two`, `reserve_three`, `reserve_four`, `reserve_five`) VALUES ('316b86a640d311eb83f98cec4b79dd2f', 'DEFAULT', 'EN', 'ML', 'Hello, you may need the following services (if you need labor, please click the button above to switch to manual):', '1', 'FIRSTTISHI', '', NULL, 'helpCenter/A.png', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
  172. INSERT INTO `dcp`.`customer_operation`(`id`, `user_id`, `language`, `model_type`, `model_content`, `order_num`, `operation_type`, `model_name`, `link_path`, `image_path`, `status`, `create_by`, `create_date`, `update_by`, `update_date`, `reserve_one`, `reserve_two`, `reserve_three`, `reserve_four`, `reserve_five`) VALUES ('316b86a640d311eb83f98cec4b79dd3f', 'DEFAULT', 'ZH', 'COL', '入会申请', '1', 'QUICKLIST', '入会申请', NULL, '', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
  173. INSERT INTO `dcp`.`customer_operation`(`id`, `user_id`, `language`, `model_type`, `model_content`, `order_num`, `operation_type`, `model_name`, `link_path`, `image_path`, `status`, `create_by`, `create_date`, `update_by`, `update_date`, `reserve_one`, `reserve_two`, `reserve_three`, `reserve_four`, `reserve_five`) VALUES ('316b86a640d311eb83f98cec4b79dd3g', 'DEFAULT', 'ZH', 'COL', '活动报名', '2', 'QUICKLIST', '活动报名', NULL, '', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
  174. INSERT INTO `dcp`.`customer_operation`(`id`, `user_id`, `language`, `model_type`, `model_content`, `order_num`, `operation_type`, `model_name`, `link_path`, `image_path`, `status`, `create_by`, `create_date`, `update_by`, `update_date`, `reserve_one`, `reserve_two`, `reserve_three`, `reserve_four`, `reserve_five`) VALUES ('316b86a640d311eb83f98cec4b79dd3h', 'DEFAULT', 'ZH', 'COL', '忘记密码', '3', 'QUICKLIST', '忘记密码', NULL, '', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
  175. INSERT INTO `dcp`.`customer_operation`(`id`, `user_id`, `language`, `model_type`, `model_content`, `order_num`, `operation_type`, `model_name`, `link_path`, `image_path`, `status`, `create_by`, `create_date`, `update_by`, `update_date`, `reserve_one`, `reserve_two`, `reserve_three`, `reserve_four`, `reserve_five`) VALUES ('316b86a640d311eb83f98cec4b79dd3i', 'DEFAULT', 'ZH', 'COL', '入盟申请', '4', 'QUICKLIST', '入盟申请', NULL, '', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
  176. INSERT INTO `dcp`.`customer_operation`(`id`, `user_id`, `language`, `model_type`, `model_content`, `order_num`, `operation_type`, `model_name`, `link_path`, `image_path`, `status`, `create_by`, `create_date`, `update_by`, `update_date`, `reserve_one`, `reserve_two`, `reserve_three`, `reserve_four`, `reserve_five`) VALUES ('316b86a640d311eb83f98cec5b79dd31', 'DEFAULT', 'ZH', 'CJ', '会议服务', '1', 'PLATFORMSERVICES', '会议服务', 'conferenceServices', 'helpCenter/discussion3.png', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
  177. INSERT INTO `dcp`.`customer_operation`(`id`, `user_id`, `language`, `model_type`, `model_content`, `order_num`, `operation_type`, `model_name`, `link_path`, `image_path`, `status`, `create_by`, `create_date`, `update_by`, `update_date`, `reserve_one`, `reserve_two`, `reserve_three`, `reserve_four`, `reserve_five`) VALUES ('316b86a640d311eb83f98cec5b79dd3f', 'DEFAULT', 'EN', 'COL', 'Membership Application', '1', 'QUICKLIST', 'Membership Application', NULL, '', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
  178. INSERT INTO `dcp`.`customer_operation`(`id`, `user_id`, `language`, `model_type`, `model_content`, `order_num`, `operation_type`, `model_name`, `link_path`, `image_path`, `status`, `create_by`, `create_date`, `update_by`, `update_date`, `reserve_one`, `reserve_two`, `reserve_three`, `reserve_four`, `reserve_five`) VALUES ('316b86a640d311eb83f98cec5b79dd3g', 'DEFAULT', 'EN', 'COL', 'Activity Registration', '2', 'QUICKLIST', 'Activity Registration', NULL, '', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
  179. INSERT INTO `dcp`.`customer_operation`(`id`, `user_id`, `language`, `model_type`, `model_content`, `order_num`, `operation_type`, `model_name`, `link_path`, `image_path`, `status`, `create_by`, `create_date`, `update_by`, `update_date`, `reserve_one`, `reserve_two`, `reserve_three`, `reserve_four`, `reserve_five`) VALUES ('316b86a640d311eb83f98cec5b79dd3h', 'DEFAULT', 'EN', 'COL', 'Forget the Password', '3', 'QUICKLIST', 'Forget the Password', NULL, '', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
  180. INSERT INTO `dcp`.`customer_operation`(`id`, `user_id`, `language`, `model_type`, `model_content`, `order_num`, `operation_type`, `model_name`, `link_path`, `image_path`, `status`, `create_by`, `create_date`, `update_by`, `update_date`, `reserve_one`, `reserve_two`, `reserve_three`, `reserve_four`, `reserve_five`) VALUES ('316b86a640d311eb83f98cec5b79dd3i', 'DEFAULT', 'EN', 'COL', 'Application for Membership', '4', 'QUICKLIST', 'Application for Membership', NULL, '', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
  181. INSERT INTO `dcp`.`customer_operation`(`id`, `user_id`, `language`, `model_type`, `model_content`, `order_num`, `operation_type`, `model_name`, `link_path`, `image_path`, `status`, `create_by`, `create_date`, `update_by`, `update_date`, `reserve_one`, `reserve_two`, `reserve_three`, `reserve_four`, `reserve_five`) VALUES ('416b86a640d311eb83f98cec5b79dd31', 'DEFAULT', 'ZH', 'CJ', '定制服务', '2', 'PLATFORMSERVICES', '定制服务', 'IntroductionMemberProfile', 'helpCenter/zuanshi.jpg', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
  182. INSERT INTO `dcp`.`customer_operation`(`id`, `user_id`, `language`, `model_type`, `model_content`, `order_num`, `operation_type`, `model_name`, `link_path`, `image_path`, `status`, `create_by`, `create_date`, `update_by`, `update_date`, `reserve_one`, `reserve_two`, `reserve_three`, `reserve_four`, `reserve_five`) VALUES ('416b86a640d311eb83f98cec5b79dd32', 'DEFAULT', 'ZH', 'CJ', '金融服务', '3', 'PLATFORMSERVICES', '金融服务', 'financialServices', 'helpCenter/finance3.png', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
  183. INSERT INTO `dcp`.`customer_operation`(`id`, `user_id`, `language`, `model_type`, `model_content`, `order_num`, `operation_type`, `model_name`, `link_path`, `image_path`, `status`, `create_by`, `create_date`, `update_by`, `update_date`, `reserve_one`, `reserve_two`, `reserve_three`, `reserve_four`, `reserve_five`) VALUES ('416b86a640d311eb83f98cec5b79dd33', 'DEFAULT', 'ZH', 'CJ', '资源共享', '4', 'PLATFORMSERVICES', '资源共享', 'resourceSharing', 'helpCenter/share3.png', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
  184. INSERT INTO `dcp`.`customer_operation`(`id`, `user_id`, `language`, `model_type`, `model_content`, `order_num`, `operation_type`, `model_name`, `link_path`, `image_path`, `status`, `create_by`, `create_date`, `update_by`, `update_date`, `reserve_one`, `reserve_two`, `reserve_three`, `reserve_four`, `reserve_five`) VALUES ('416b86a640d311eb83f98cec5b79dd34', 'DEFAULT', 'ZH', 'CJ', '会展服务', '5', 'PLATFORMSERVICES', '会展服务', 'http://tour.quanjingke.com/xiangmu/quanqiunengyuan_vtour_v7/index.html', 'helpCenter/Exhibition3.png', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
  185. INSERT INTO `dcp`.`customer_operation`(`id`, `user_id`, `language`, `model_type`, `model_content`, `order_num`, `operation_type`, `model_name`, `link_path`, `image_path`, `status`, `create_by`, `create_date`, `update_by`, `update_date`, `reserve_one`, `reserve_two`, `reserve_three`, `reserve_four`, `reserve_five`) VALUES ('516b86a640d311eb83f98cec5b79dd31', 'DEFAULT', 'EN', 'CJ', 'Customized Services', '2', 'PLATFORMSERVICES', 'Customized Services', 'IntroductionMemberProfile', 'helpCenter/zuanshi.jpg', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
  186. INSERT INTO `dcp`.`customer_operation`(`id`, `user_id`, `language`, `model_type`, `model_content`, `order_num`, `operation_type`, `model_name`, `link_path`, `image_path`, `status`, `create_by`, `create_date`, `update_by`, `update_date`, `reserve_one`, `reserve_two`, `reserve_three`, `reserve_four`, `reserve_five`) VALUES ('516b86a640d311eb83f98cec5b79dd32', 'DEFAULT', 'EN', 'CJ', 'Financial Service', '3', 'PLATFORMSERVICES', 'Financial Service', 'financialServices', 'helpCenter/finance3.png', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
  187. INSERT INTO `dcp`.`customer_operation`(`id`, `user_id`, `language`, `model_type`, `model_content`, `order_num`, `operation_type`, `model_name`, `link_path`, `image_path`, `status`, `create_by`, `create_date`, `update_by`, `update_date`, `reserve_one`, `reserve_two`, `reserve_three`, `reserve_four`, `reserve_five`) VALUES ('516b86a640d311eb83f98cec5b79dd33', 'DEFAULT', 'EN', 'CJ', 'Resource Sharing', '4', 'PLATFORMSERVICES', 'Resource sharing service', 'resourceSharing', 'helpCenter/share3.png', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
  188. INSERT INTO `dcp`.`customer_operation`(`id`, `user_id`, `language`, `model_type`, `model_content`, `order_num`, `operation_type`, `model_name`, `link_path`, `image_path`, `status`, `create_by`, `create_date`, `update_by`, `update_date`, `reserve_one`, `reserve_two`, `reserve_three`, `reserve_four`, `reserve_five`) VALUES ('516b86a640d311eb83f98cec5b79dd34', 'DEFAULT', 'EN', 'CJ', 'Exhibition Service', '5', 'PLATFORMSERVICES', 'Exhibition Service', 'http://tour.quanjingke.com/xiangmu/quanqiunengyuan_vtour_v7/index.html', 'helpCenter/Exhibition3.png', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
  189. INSERT INTO `dcp`.`customer_operation`(`id`, `user_id`, `language`, `model_type`, `model_content`, `order_num`, `operation_type`, `model_name`, `link_path`, `image_path`, `status`, `create_by`, `create_date`, `update_by`, `update_date`, `reserve_one`, `reserve_two`, `reserve_three`, `reserve_four`, `reserve_five`) VALUES ('516b86a640d311eb83f98cec5b79dd35', 'DEFAULT', 'EN', 'CJ', 'Conference Services', '1', 'PLATFORMSERVICES', 'Conference Services', 'conferenceServices', 'helpCenter/discussion3.png', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
  190. INSERT INTO `dcp`.`customer_operation`(`id`, `user_id`, `language`, `model_type`, `model_content`, `order_num`, `operation_type`, `model_name`, `link_path`, `image_path`, `status`, `create_by`, `create_date`, `update_by`, `update_date`, `reserve_one`, `reserve_two`, `reserve_three`, `reserve_four`, `reserve_five`) VALUES ('616b86a640d311eb83f98cec5b79dd31', 'DEFAULT', 'ZH', 'CJ', '申请入盟', '2', 'QUICKACCESS', '申请入盟', 'IntroductionApplicationMembership', 'helpCenter/quickBackImg2.jpg', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
  191. INSERT INTO `dcp`.`customer_operation`(`id`, `user_id`, `language`, `model_type`, `model_content`, `order_num`, `operation_type`, `model_name`, `link_path`, `image_path`, `status`, `create_by`, `create_date`, `update_by`, `update_date`, `reserve_one`, `reserve_two`, `reserve_three`, `reserve_four`, `reserve_five`) VALUES ('616b86a640d311eb83f98cec5b79dd32', 'DEFAULT', 'ZH', 'CJ', '资助洽商', '3', 'QUICKACCESS', '资助洽商', 'IntroductionMemberProfile?key=custom&dialogVisible2=true', 'helpCenter/quickBackImg3.jpg', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
  192. INSERT INTO `dcp`.`customer_operation`(`id`, `user_id`, `language`, `model_type`, `model_content`, `order_num`, `operation_type`, `model_name`, `link_path`, `image_path`, `status`, `create_by`, `create_date`, `update_by`, `update_date`, `reserve_one`, `reserve_two`, `reserve_three`, `reserve_four`, `reserve_five`) VALUES ('616b86a640d311eb83f98cec5b79dd33', 'DEFAULT', 'ZH', 'CJ', '申请定制服务', '4', 'QUICKACCESS', '申请定制服务', 'IntroductionMemberProfile?key=custom&dialogVisible=true', 'helpCenter/quickBackImg4.jpg', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
  193. INSERT INTO `dcp`.`customer_operation`(`id`, `user_id`, `language`, `model_type`, `model_content`, `order_num`, `operation_type`, `model_name`, `link_path`, `image_path`, `status`, `create_by`, `create_date`, `update_by`, `update_date`, `reserve_one`, `reserve_two`, `reserve_three`, `reserve_four`, `reserve_five`) VALUES ('616b86a640d311eb83f98cec5b79dd34', 'DEFAULT', 'ZH', 'CJ', '申请调研', '5', 'QUICKACCESS', '申请调研', 'resourceSharing', 'helpCenter/quickBackImg5.png', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
  194. INSERT INTO `dcp`.`customer_operation`(`id`, `user_id`, `language`, `model_type`, `model_content`, `order_num`, `operation_type`, `model_name`, `link_path`, `image_path`, `status`, `create_by`, `create_date`, `update_by`, `update_date`, `reserve_one`, `reserve_two`, `reserve_three`, `reserve_four`, `reserve_five`) VALUES ('616b86a640d311eb83f98cec5b79dd35', 'DEFAULT', 'ZH', 'CJ', '申请入会', '1', 'QUICKACCESS', '申请入会', 'IntroductionFundingApplication', 'helpCenter/quickBackImg1.jpg', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
  195. INSERT INTO `dcp`.`customer_operation`(`id`, `user_id`, `language`, `model_type`, `model_content`, `order_num`, `operation_type`, `model_name`, `link_path`, `image_path`, `status`, `create_by`, `create_date`, `update_by`, `update_date`, `reserve_one`, `reserve_two`, `reserve_three`, `reserve_four`, `reserve_five`) VALUES ('716b86a640d311eb83f98cec5b79dd31', 'DEFAULT', 'EN', 'CJ', 'Apply for membership', '2', 'QUICKACCESS', 'Apply for membership', 'IntroductionApplicationMembership', 'helpCenter/quickBackImg2.jpg', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
  196. INSERT INTO `dcp`.`customer_operation`(`id`, `user_id`, `language`, `model_type`, `model_content`, `order_num`, `operation_type`, `model_name`, `link_path`, `image_path`, `status`, `create_by`, `create_date`, `update_by`, `update_date`, `reserve_one`, `reserve_two`, `reserve_three`, `reserve_four`, `reserve_five`) VALUES ('716b86a640d311eb83f98cec5b79dd32', 'DEFAULT', 'EN', 'CJ', 'Funding negotiation', '3', 'QUICKACCESS', 'Funding negotiation', 'IntroductionMemberProfile?key=custom&dialogVisible2=true', 'helpCenter/quickBackImg3.jpg', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
  197. INSERT INTO `dcp`.`customer_operation`(`id`, `user_id`, `language`, `model_type`, `model_content`, `order_num`, `operation_type`, `model_name`, `link_path`, `image_path`, `status`, `create_by`, `create_date`, `update_by`, `update_date`, `reserve_one`, `reserve_two`, `reserve_three`, `reserve_four`, `reserve_five`) VALUES ('716b86a640d311eb83f98cec5b79dd33', 'DEFAULT', 'EN', 'CJ', 'Apply for custom service', '4', 'QUICKACCESS', 'Apply for custom service', 'IntroductionMemberProfile?key=custom&dialogVisible=true', 'helpCenter/quickBackImg4.jpg', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
  198. INSERT INTO `dcp`.`customer_operation`(`id`, `user_id`, `language`, `model_type`, `model_content`, `order_num`, `operation_type`, `model_name`, `link_path`, `image_path`, `status`, `create_by`, `create_date`, `update_by`, `update_date`, `reserve_one`, `reserve_two`, `reserve_three`, `reserve_four`, `reserve_five`) VALUES ('716b86a640d311eb83f98cec5b79dd34', 'DEFAULT', 'EN', 'CJ', 'Apply for research', '5', 'QUICKACCESS', 'Apply for research', 'resourceSharing', 'helpCenter/quickBackImg5.png', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
  199. INSERT INTO `dcp`.`customer_operation`(`id`, `user_id`, `language`, `model_type`, `model_content`, `order_num`, `operation_type`, `model_name`, `link_path`, `image_path`, `status`, `create_by`, `create_date`, `update_by`, `update_date`, `reserve_one`, `reserve_two`, `reserve_three`, `reserve_four`, `reserve_five`) VALUES ('716b86a640d311eb83f98cec5b79dd35', 'DEFAULT', 'EN', 'CJ', 'Apply for membership', '1', 'QUICKACCESS', 'Apply for membership', 'IntroductionFundingApplication', 'helpCenter/quickBackImg1.jpg', '1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
  200. /* 161,159已处理 */