peasafe.sql 232 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436
  1. -- phpMyAdmin SQL Dump
  2. -- version 4.8.3
  3. -- https://www.phpmyadmin.net/
  4. --
  5. -- 主机: web-mysql
  6. -- 生成日期: 2022-09-16 10:14:20
  7. -- 服务器版本: 10.1.32-MariaDB
  8. -- PHP 版本: 7.1.17
  9. SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
  10. SET AUTOCOMMIT = 0;
  11. START TRANSACTION;
  12. SET time_zone = "+00:00";
  13. /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
  14. /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
  15. /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
  16. /*!40101 SET NAMES utf8mb4 */;
  17. --
  18. -- 数据库: `peasafe`
  19. --
  20. CREATE DATABASE IF NOT EXISTS `peasafe` DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci;
  21. USE `peasafe`;
  22. -- --------------------------------------------------------
  23. --
  24. -- 表的结构 `peasafe_main_config`
  25. --
  26. DROP TABLE IF EXISTS `peasafe_main_config`;
  27. CREATE TABLE `peasafe_main_config` (
  28. `id` int(11) UNSIGNED NOT NULL COMMENT '平台ID',
  29. `name` varchar(32) DEFAULT NULL COMMENT '网站名称',
  30. `info` varchar(800) DEFAULT NULL COMMENT '网站介绍',
  31. `desc` varchar(2000) DEFAULT NULL COMMENT '网站描述',
  32. `logo` varchar(150) DEFAULT NULL COMMENT '网站LOGO',
  33. `phone` varchar(100) DEFAULT NULL COMMENT '客服电话',
  34. `email` varchar(100) DEFAULT NULL COMMENT '联系邮箱',
  35. `address` varchar(1000) DEFAULT NULL COMMENT '联系地址',
  36. `facebook` varchar(1000) DEFAULT NULL COMMENT 'FACEBOOK链接',
  37. `twitter` varchar(1000) DEFAULT NULL COMMENT 'TWITTER链接',
  38. `linkedin` varchar(1000) DEFAULT NULL COMMENT 'LINKEDIN链接',
  39. `instagram` varchar(1000) DEFAULT NULL COMMENT 'INSTAGRAM链接',
  40. `foot` text COMMENT '底部信息',
  41. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  42. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  43. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  44. --
  45. -- 转存表中的数据 `peasafe_main_config`
  46. --
  47. INSERT INTO `peasafe_main_config` (`id`, `name`, `info`, `desc`, `logo`, `phone`, `email`, `address`, `facebook`, `twitter`, `linkedin`, `instagram`, `foot`, `state`, `cdate`) VALUES
  48. (1, 'Peasafe', 'PeasafePeasafe', 'PeasafePeasafe', '{uploadRes}1/2022/09/08/2494cd430843ef1b8bfcc912beea910b.png', '15810090811', 'recover-now@peasafe.com', '10130 Warner Ave, Unit C Fountain Valley, CA 92708', '#', '#', '#', '#', '©2021 PeaSafe. All rights reserved.', 1, 1662627771);
  49. -- --------------------------------------------------------
  50. --
  51. -- 表的结构 `peasafe_main_contact`
  52. --
  53. DROP TABLE IF EXISTS `peasafe_main_contact`;
  54. CREATE TABLE `peasafe_main_contact` (
  55. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  56. `name` varchar(32) DEFAULT NULL COMMENT 'NAME',
  57. `email` varchar(32) DEFAULT NULL COMMENT 'EMAIL',
  58. `message` text COMMENT 'MESSAGE',
  59. `status` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'STATUS',
  60. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  61. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT 'DATE'
  62. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  63. --
  64. -- 转存表中的数据 `peasafe_main_contact`
  65. --
  66. INSERT INTO `peasafe_main_contact` (`id`, `name`, `email`, `message`, `status`, `state`, `cdate`) VALUES
  67. (1, '11', NULL, '321321', 0, 1, 1663321170),
  68. (2, '11', NULL, '321321', 0, 1, 1663321886),
  69. (3, '1233', '3213@qq.com', '321', 0, 1, 1663321958);
  70. -- --------------------------------------------------------
  71. --
  72. -- 表的结构 `peasafe_main_menu`
  73. --
  74. DROP TABLE IF EXISTS `peasafe_main_menu`;
  75. CREATE TABLE `peasafe_main_menu` (
  76. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  77. `name` varchar(32) DEFAULT NULL COMMENT '菜单名称',
  78. `link` varchar(2000) DEFAULT NULL COMMENT '菜单链接',
  79. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序-数值越大越靠前,相当于置顶',
  80. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  81. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  82. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  83. --
  84. -- 转存表中的数据 `peasafe_main_menu`
  85. --
  86. INSERT INTO `peasafe_main_menu` (`id`, `name`, `link`, `reorder`, `state`, `cdate`) VALUES
  87. (1, 'Home', 'home?page=home', 100, 1, 1662686402),
  88. (2, 'Our Technology', 'home?page=technology', 99, 1, 1662686443),
  89. (3, 'Our Readiness', 'home?page=readiness', 98, 1, 1662687727),
  90. (4, 'Our Market', 'home?page=market\r\n', 97, 1, 1662687765),
  91. (5, 'Our Services', 'home?page=service\r\n', 96, 1, 1662687789),
  92. (6, 'Contact Us', 'home?page=contact', 90, 1, 1662687843);
  93. -- --------------------------------------------------------
  94. --
  95. -- 表的结构 `peasafe_manage_admin`
  96. --
  97. DROP TABLE IF EXISTS `peasafe_manage_admin`;
  98. CREATE TABLE `peasafe_manage_admin` (
  99. `id` int(11) UNSIGNED NOT NULL COMMENT '管理员ID',
  100. `username` varchar(24) DEFAULT NULL COMMENT '管理员名',
  101. `email` varchar(150) DEFAULT NULL COMMENT '邮箱-可用于登录,请准确填写,不允许重复',
  102. `mobile` varchar(32) DEFAULT NULL COMMENT '手机号',
  103. `password` varchar(64) DEFAULT NULL COMMENT '管理员密码',
  104. `config` int(11) NOT NULL DEFAULT '1' COMMENT '人性化配置',
  105. `company` varchar(2000) DEFAULT NULL COMMENT '选择公司',
  106. `role` varchar(100) DEFAULT NULL COMMENT '所属角色',
  107. `group` varchar(1000) NOT NULL DEFAULT '{}' COMMENT '部门',
  108. `top` text COMMENT '头部菜单-这里的头部菜单如果设置,则会覆盖角色中的头部菜单',
  109. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '数据状态',
  110. `status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  111. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  112. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  113. --
  114. -- 转存表中的数据 `peasafe_manage_admin`
  115. --
  116. INSERT INTO `peasafe_manage_admin` (`id`, `username`, `email`, `mobile`, `password`, `config`, `company`, `role`, `group`, `top`, `state`, `status`, `cdate`) VALUES
  117. (1, '2934170@qq.com', '2934170@qq.com', NULL, '8d969eef6ecad3c29a3a629280e686cf0c3f5d5a86aff3ca12020c923adc6c92', 1, '1', '1', '1', NULL, 1, 1, 1662543889);
  118. -- --------------------------------------------------------
  119. --
  120. -- 表的结构 `peasafe_manage_admin_group`
  121. --
  122. DROP TABLE IF EXISTS `peasafe_manage_admin_group`;
  123. CREATE TABLE `peasafe_manage_admin_group` (
  124. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  125. `admin_id` int(11) NOT NULL DEFAULT '0' COMMENT '管理员ID',
  126. `group_id` int(11) NOT NULL DEFAULT '0' COMMENT '部门ID',
  127. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  128. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  129. --
  130. -- 转存表中的数据 `peasafe_manage_admin_group`
  131. --
  132. INSERT INTO `peasafe_manage_admin_group` (`id`, `admin_id`, `group_id`, `cdate`) VALUES
  133. (1, 1, 1, 1662543889);
  134. -- --------------------------------------------------------
  135. --
  136. -- 表的结构 `peasafe_manage_admin_role`
  137. --
  138. DROP TABLE IF EXISTS `peasafe_manage_admin_role`;
  139. CREATE TABLE `peasafe_manage_admin_role` (
  140. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  141. `admin_id` int(11) NOT NULL DEFAULT '0' COMMENT '管理员ID',
  142. `role_id` int(11) NOT NULL DEFAULT '0' COMMENT '角色ID',
  143. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  144. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  145. --
  146. -- 转存表中的数据 `peasafe_manage_admin_role`
  147. --
  148. INSERT INTO `peasafe_manage_admin_role` (`id`, `admin_id`, `role_id`, `cdate`) VALUES
  149. (1, 1, 1, 1662543889);
  150. -- --------------------------------------------------------
  151. --
  152. -- 表的结构 `peasafe_manage_api`
  153. --
  154. DROP TABLE IF EXISTS `peasafe_manage_api`;
  155. CREATE TABLE `peasafe_manage_api` (
  156. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  157. `name` varchar(30) DEFAULT NULL COMMENT '接口名称',
  158. `type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '接口类型',
  159. `project` varchar(30) DEFAULT NULL COMMENT '所属项目',
  160. `site` varchar(500) DEFAULT NULL COMMENT '接口地址',
  161. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序',
  162. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '数据状态',
  163. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  164. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  165. -- --------------------------------------------------------
  166. --
  167. -- 表的结构 `peasafe_manage_auth`
  168. --
  169. DROP TABLE IF EXISTS `peasafe_manage_auth`;
  170. CREATE TABLE `peasafe_manage_auth` (
  171. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  172. `project` varchar(50) DEFAULT NULL COMMENT '项目KEY',
  173. `project_name` varchar(50) DEFAULT NULL COMMENT '项目名',
  174. `name` varchar(50) DEFAULT NULL COMMENT '权限名',
  175. `auth_id` int(11) NOT NULL DEFAULT '-1' COMMENT '上级权限',
  176. `key` varchar(100) DEFAULT NULL COMMENT '权限KEY',
  177. `value` varchar(30) DEFAULT NULL COMMENT '对应的值',
  178. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  179. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  180. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  181. -- --------------------------------------------------------
  182. --
  183. -- 表的结构 `peasafe_manage_company`
  184. --
  185. DROP TABLE IF EXISTS `peasafe_manage_company`;
  186. CREATE TABLE `peasafe_manage_company` (
  187. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  188. `name` varchar(80) DEFAULT NULL COMMENT '公司名称',
  189. `is_project` tinyint(1) NOT NULL DEFAULT '1' COMMENT '项目可用状态',
  190. `project` varchar(2000) DEFAULT NULL COMMENT '可用项目',
  191. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  192. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  193. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  194. --
  195. -- 转存表中的数据 `peasafe_manage_company`
  196. --
  197. INSERT INTO `peasafe_manage_company` (`id`, `name`, `is_project`, `project`, `state`, `cdate`) VALUES
  198. (1, '默认公司', 1, NULL, 1, 1662543891);
  199. -- --------------------------------------------------------
  200. --
  201. -- 表的结构 `peasafe_manage_config`
  202. --
  203. DROP TABLE IF EXISTS `peasafe_manage_config`;
  204. CREATE TABLE `peasafe_manage_config` (
  205. `id` int(11) UNSIGNED NOT NULL COMMENT '配置ID',
  206. `name` varchar(32) DEFAULT NULL COMMENT '配置名',
  207. `template` int(1) NOT NULL DEFAULT '1' COMMENT '后台模板',
  208. `title` varchar(32) DEFAULT NULL COMMENT '后台TITLE',
  209. `info` varchar(40) DEFAULT NULL COMMENT '控制台欢迎标题',
  210. `content` text COMMENT '控制台欢迎内容',
  211. `help_title` varchar(32) DEFAULT NULL COMMENT '帮助标题',
  212. `help_info` varchar(800) DEFAULT NULL COMMENT '帮助介绍',
  213. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  214. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  215. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  216. --
  217. -- 转存表中的数据 `peasafe_manage_config`
  218. --
  219. INSERT INTO `peasafe_manage_config` (`id`, `name`, `template`, `title`, `info`, `content`, `help_title`, `help_info`, `state`, `cdate`) VALUES
  220. (1, '默认配置', 1, NULL, NULL, NULL, NULL, NULL, 1, 1662543883);
  221. -- --------------------------------------------------------
  222. --
  223. -- 表的结构 `peasafe_manage_cron`
  224. --
  225. DROP TABLE IF EXISTS `peasafe_manage_cron`;
  226. CREATE TABLE `peasafe_manage_cron` (
  227. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  228. `name` varchar(32) DEFAULT NULL COMMENT '任务名',
  229. `project` varchar(30) DEFAULT NULL COMMENT '项目',
  230. `interface` varchar(100) DEFAULT NULL COMMENT '接口(命令行)',
  231. `ldate` int(11) NOT NULL DEFAULT '0' COMMENT '执行时间',
  232. `time` int(11) NOT NULL DEFAULT '0' COMMENT '时间间隔(为0则执行一次)',
  233. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  234. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  235. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  236. -- --------------------------------------------------------
  237. --
  238. -- 表的结构 `peasafe_manage_group`
  239. --
  240. DROP TABLE IF EXISTS `peasafe_manage_group`;
  241. CREATE TABLE `peasafe_manage_group` (
  242. `id` int(11) UNSIGNED NOT NULL COMMENT '组ID',
  243. `company_id` int(11) NOT NULL DEFAULT '0' COMMENT '选择公司',
  244. `name` varchar(50) DEFAULT NULL COMMENT '部门名称',
  245. `area` varchar(255) DEFAULT NULL COMMENT '区域',
  246. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序',
  247. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  248. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  249. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  250. --
  251. -- 转存表中的数据 `peasafe_manage_group`
  252. --
  253. INSERT INTO `peasafe_manage_group` (`id`, `company_id`, `name`, `area`, `reorder`, `state`, `cdate`) VALUES
  254. (1, 1, '默认部门', NULL, 1, 1, 1662543890);
  255. -- --------------------------------------------------------
  256. --
  257. -- 表的结构 `peasafe_manage_log`
  258. --
  259. DROP TABLE IF EXISTS `peasafe_manage_log`;
  260. CREATE TABLE `peasafe_manage_log` (
  261. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  262. `project` varchar(80) DEFAULT NULL COMMENT '项目名',
  263. `table` varchar(80) DEFAULT NULL COMMENT '项目下的表名',
  264. `menu_id` varchar(80) DEFAULT NULL COMMENT '菜单',
  265. `name` varchar(80) DEFAULT NULL COMMENT '操作名',
  266. `type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '操作类型',
  267. `admin` int(11) NOT NULL DEFAULT '0' COMMENT '操作人',
  268. `info` longtext COMMENT '操作记录',
  269. `tid` int(11) NOT NULL DEFAULT '0' COMMENT '来源表ID',
  270. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  271. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '操作时间'
  272. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  273. --
  274. -- 转存表中的数据 `peasafe_manage_log`
  275. --
  276. INSERT INTO `peasafe_manage_log` (`id`, `project`, `table`, `menu_id`, `name`, `type`, `admin`, `info`, `tid`, `state`, `cdate`) VALUES
  277. (1, 'page', 'page', '1,14,16', '页面管理.页面列表', 2, 1, '{\"ID\":\"1\",\"页面名称\":{\"更新前\":\"默认页面\",\"更新后\":\"Our Technology\"},\"页面标识\":\"home\",\"是否菜单\":\"是\",\"页面描述\":{\"更新前\":\"默认页面\",\"更新后\":\"At PeaSafe, we set a high standard to provide our frontliners with the best equipment and technology for Disaster Recovery. When an unpredicted disastrous event strikes, communication plays a vital role to respond ASAP to save lives. PeaSafe is the go-to name to provide the latest telecommunication services. PeaSafe is authorized to introduces the PeaRhino System from Peatalk which allows a vertical, rapid deploy tower that is easy to use, all self-contained, and is not restricted to existing tower locations. This flexibility makes it attractive and cost-effective for any disaster recovery program from local to all over the world.\"}}', 1, 1, 1662544172),
  278. (2, 'page', 'page', '1,14,16', '页面管理.页面列表', 2, 1, '{\"ID\":\"1\",\"页面名称\":{\"更新前\":\"默认页面\",\"更新后\":\"Our Technology\"},\"页面标识\":\"home\",\"是否菜单\":\"是\",\"页面描述\":{\"更新前\":\"默认页面\",\"更新后\":\"At PeaSafe, we set a high standard to provide our frontliners with the best equipment and technology for Disaster Recovery. When an unpredicted disastrous event strikes, communication plays a vital role to respond ASAP to save lives. PeaSafe is the go-to name to provide the latest telecommunication services. PeaSafe is authorized to introduces the PeaRhino System from Peatalk which allows a vertical, rapid deploy tower that is easy to use, all self-contained, and is not restricted to existing tower locations. This flexibility makes it attractive and cost-effective for any disaster recovery program from local to all over the world.\"}}', 1, 1, 1662544232),
  279. (3, 'page', 'page', '1,14,16', '页面管理.页面列表', 1, 1, '{\"ID\":\"2\",\"页面名称\":\"Our Technology\",\"页面标识\":\"technology\",\"页面描述\":\"At PeaSafe, we set a high standard to provide our frontliners with the best equipment and technology for Disaster Recovery. When an unpredicted disastrous event strikes, communication plays a vital role to respond ASAP to save lives. PeaSafe is the go-to name to provide the latest telecommunication services. PeaSafe is authorized to introduces the PeaRhino System from Peatalk which allows a vertical, rapid deploy tower that is easy to use, all self-contained, and is not restricted to existing tower locations. This flexibility makes it attractive and cost-effective for any disaster recovery program from local to all over the world.\\r\\n\"}', 2, 1, 1662627802),
  280. (4, 'page', 'module', '1,14,15', '页面管理.模块列表', 1, 1, '{\"ID\":\"1\",\"模块标题\":\"Banner\",\"模块标识\":\"banner\",\"模块描述\":\"Banner\",\"内容显示条数\":\"10\",\"所属页面\":\"默认页面\",\"排序\":\"1\"}', 1, 1, 1662627871),
  281. (5, 'main', 'config', '1,17,18', '基础设置.网站基础信息', 2, 1, '{\"ID\":\"1\",\"平台ID\":\"1\",\"网站名称\":{\"更新前\":\"SPAC工厂\",\"更新后\":\"Peasafe\"},\"网站介绍\":\"PeasafePeasafe\",\"网站描述\":\"PeasafePeasafe\",\"网站LOGO\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/08\\/1bb87d41d15fe27b500a4bfcde01bb0e.png\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/08\\/1bb87d41d15fe27b500a4bfcde01bb0e.png\\\" width=\\\"150\\\">\",\"客服电话\":\"15810090845\",\"联系邮箱\":\"2934170@qq.com\",\"联系地址\":\"大望路华贸中心1号楼25层\",\"Facebook链接\":\"#\",\"Twitter链接\":\"#\",\"LinkedIn链接\":\"#\",\"Instagram链接\":\"#\"}', 1, 1, 1662628315),
  282. (6, 'page', 'page', '1,14,16', '页面管理.页面列表', 2, 1, '{\"ID\":\"1\",\"页面名称\":{\"更新前\":\"默认页面\",\"更新后\":\"Home\"},\"页面标识\":\"home\",\"页面描述\":\"默认页面\",\"排序\":\"100\"}', 1, 1, 1662629230),
  283. (7, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"1\",\"模块ID\":\"1\",\"模块标题\":\"Banner\",\"模块标识\":\"banner\",\"模块描述\":\"Banner\",\"内容显示条数\":\"10\",\"所属页面\":\"Home\",\"功能类型\":\"自定义\",\"启用的字段\":\"图片,标题\",\"排序\":\"1\"}', 1, 1, 1662630206),
  284. (8, 'main', 'config', '1,17,18', '基础设置.网站基础信息', 2, 1, '{\"ID\":\"1\",\"平台ID\":\"1\",\"网站名称\":\"Peasafe\",\"网站介绍\":\"PeasafePeasafe\",\"网站描述\":\"PeasafePeasafe\",\"网站LOGO\":{\"更新前\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/08\\/1bb87d41d15fe27b500a4bfcde01bb0e.png\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/08\\/1bb87d41d15fe27b500a4bfcde01bb0e.png\\\" width=\\\"150\\\">\",\"更新后\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/08\\/6d00ba102d83225131da7e0952864c99.png\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/08\\/6d00ba102d83225131da7e0952864c99.png\\\" width=\\\"150\\\">\"},\"客服电话\":\"15810090845\",\"联系邮箱\":\"2934170@qq.com\",\"联系地址\":\"大望路华贸中心1号楼25层\",\"Facebook链接\":\"#\",\"Twitter链接\":\"#\",\"LinkedIn链接\":\"#\",\"Instagram链接\":\"#\"}', 1, 1, 1662630876),
  285. (9, 'main', 'config', '1,17,18', '基础设置.网站基础信息', 2, 1, '{\"ID\":\"1\",\"平台ID\":\"1\",\"网站名称\":\"Peasafe\",\"网站介绍\":\"PeasafePeasafe\",\"网站描述\":\"PeasafePeasafe\",\"网站LOGO\":{\"更新前\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/08\\/6d00ba102d83225131da7e0952864c99.png\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/08\\/6d00ba102d83225131da7e0952864c99.png\\\" width=\\\"150\\\">\",\"更新后\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/08\\/2494cd430843ef1b8bfcc912beea910b.png\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/08\\/2494cd430843ef1b8bfcc912beea910b.png\\\" width=\\\"150\\\">\"},\"客服电话\":\"15810090845\",\"联系邮箱\":\"2934170@qq.com\",\"联系地址\":\"大望路华贸中心1号楼25层\",\"Facebook链接\":\"#\",\"Twitter链接\":\"#\",\"LinkedIn链接\":\"#\",\"Instagram链接\":\"#\"}', 1, 1, 1662630901),
  286. (10, 'main', 'config', '1,17,18', '基础设置.网站基础信息', 2, 1, '{\"ID\":\"1\",\"平台ID\":\"1\",\"网站名称\":\"Peasafe\",\"网站介绍\":\"PeasafePeasafe\",\"网站描述\":\"PeasafePeasafe\",\"网站LOGO\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/08\\/2494cd430843ef1b8bfcc912beea910b.png\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/08\\/2494cd430843ef1b8bfcc912beea910b.png\\\" width=\\\"150\\\">\",\"客服电话\":\"15810090845\",\"联系邮箱\":\"2934170@qq.com\",\"联系地址\":\"大望路华贸中心1号楼25层\",\"Facebook链接\":\"#\",\"Twitter链接\":\"#\",\"LinkedIn链接\":\"#\",\"Instagram链接\":\"#\",\"底部信息\":{\"更新前\":\"\",\"更新后\":\"©2021 PeaSafe. All rights reserved.\"}}', 1, 1, 1662630975),
  287. (11, 'main', 'menu', '1,17,26', '基础设置.网站菜单管理', 2, 1, '{\"ID\":\"1\",\"菜单名称\":{\"更新前\":\"首页\",\"更新后\":\"Home\"},\"菜单链接\":{\"更新前\":\"home\",\"更新后\":\"index?page=home\"}}', 1, 1, 1662686421),
  288. (12, 'main', 'menu', '1,17,26', '基础设置.网站菜单管理', 1, 1, '{\"ID\":\"2\",\"菜单名称\":\"Our Technology\",\"菜单链接\":\"index?page=technology\"}', 2, 1, 1662686443),
  289. (13, 'main', 'menu', '1,17,26', '基础设置.网站菜单管理', 2, 1, '{\"ID\":\"2\",\"菜单名称\":\"Our Technology\",\"菜单链接\":{\"更新前\":\"index?page=technology\",\"更新后\":\"home?page=technology\"}}', 2, 1, 1662687050),
  290. (14, 'main', 'menu', '1,17,26', '基础设置.网站菜单管理', 2, 1, '{\"ID\":\"1\",\"菜单名称\":\"Home\",\"菜单链接\":{\"更新前\":\"index?page=home\",\"更新后\":\"home?page=home\"}}', 1, 1, 1662687055),
  291. (15, 'main', 'menu', '1,17,26', '基础设置.网站菜单管理', 1, 1, '{\"ID\":\"3\",\"菜单名称\":\"Our Readiness\",\"菜单链接\":\"readiness\"}', 3, 1, 1662687727),
  292. (16, 'main', 'menu', '1,17,26', '基础设置.网站菜单管理', 2, 1, '{\"ID\":\"3\",\"菜单名称\":\"Our Readiness\",\"菜单链接\":{\"更新前\":\"readiness\",\"更新后\":\"home?page=readiness\"}}', 3, 1, 1662687747),
  293. (17, 'main', 'menu', '1,17,26', '基础设置.网站菜单管理', 1, 1, '{\"ID\":\"4\",\"菜单名称\":\"Our Market\",\"菜单链接\":\"home?page=market\\r\\n\"}', 4, 1, 1662687765),
  294. (18, 'main', 'menu', '1,17,26', '基础设置.网站菜单管理', 1, 1, '{\"ID\":\"5\",\"菜单名称\":\"Our Services\",\"菜单链接\":\"home?page=services\\r\\n\"}', 5, 1, 1662687789),
  295. (19, 'main', 'menu', '1,17,26', '基础设置.网站菜单管理', 1, 1, '{\"ID\":\"6\",\"菜单名称\":\"Contact Us\",\"菜单链接\":\"home?page=contact\"}', 6, 1, 1662687843),
  296. (20, 'page', 'data', '1,14,15', '页面管理.内容管理', 1, 1, '{\"ID\":\"1\",\"所属模块\":\"Banner\",\"功能类型\":\"自定义\",\"标题\":\"Recover from Disaster Now\",\"图片\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/09\\/b6c31d01d41c9e1714958f9c56d01d8f.png\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/09\\/b6c31d01d41c9e1714958f9c56d01d8f.png\\\" width=\\\"150\\\">\",\"链接\":\"#\",\"排序\":\"1\"}', 1, 1, 1662688813),
  297. (21, 'page', 'col', '1,14,16', '页面管理.字段设置', 1, 1, '{\"ID\":\"4\",\"字段名称\":\"内容\",\"字段标识\":\"content\",\"字段描述\":\"内容\",\"类型\":\"长文本\",\"排序(数值越大越靠前)\":\"1\"}', 4, 1, 1662688841),
  298. (22, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"1\",\"模块ID\":\"1\",\"模块标题\":\"Banner\",\"模块标识\":\"banner\",\"模块描述\":\"Banner\",\"内容显示条数\":{\"更新前\":\"10\",\"更新后\":\"3\"},\"所属页面\":\"Home\",\"功能类型\":\"自定义\",\"启用的字段\":{\"更新前\":\"标题\",\"更新后\":\"链接,图片\"},\"排序\":\"1\"}', 1, 1, 1662688858),
  299. (23, 'page', 'data', '1,14,25', '页面管理.内容管理', 2, 1, '{\"ID\":\"1\",\"所属模块\":\"Banner\",\"功能类型\":\"自定义\",\"标题\":\"Recover from Disaster Now\",\"图片\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/09\\/b6c31d01d41c9e1714958f9c56d01d8f.png\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/09\\/b6c31d01d41c9e1714958f9c56d01d8f.png\\\" width=\\\"150\\\">\",\"链接\":\"#\",\"内容\":{\"更新前\":\"\",\"更新后\":\"PeaSafe answers to unforeseen disastrous events to avoid unwanted halt of communication\"},\"排序\":\"1\"}', 1, 1, 1662688866),
  300. (24, 'page', 'module', '1,14,15', '页面管理.模块列表', 1, 1, '{\"ID\":\"2\",\"模块标题\":\"Tech\",\"模块标识\":\"tech\",\"模块描述\":\"tech\",\"内容显示条数\":\"10\",\"所属页面\":\"Home\",\"排序\":\"1\"}', 2, 1, 1662718702),
  301. (25, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"2\",\"模块ID\":\"2\",\"模块标题\":{\"更新前\":\"Tech\",\"更新后\":\"Our Technology\"},\"模块标识\":\"tech\",\"模块描述\":\"tech\",\"内容显示条数\":\"10\",\"所属页面\":\"Home\",\"排序\":\"1\"}', 2, 1, 1662718744),
  302. (26, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"2\",\"模块ID\":\"2\",\"模块标题\":\"Our Technology\",\"模块标识\":\"tech\",\"模块描述\":{\"更新前\":\"tech\",\"更新后\":\"At PeaSafe, we set a high standard to provide our frontliners with the best equipment and technology for Disaster Recovery. When an unpredicted disastrous event strikes, communication plays a vital role to respond ASAP to save lives. PeaSafe is the go-to name to provide the latest telecommunication services. PeaSafe is authorized to introduces the PeaRhino System from Peatalk which allows a vertical, rapid deploy tower that is easy to use, all self-contained, and is not restricted to existing tower locations. This flexibility makes it attractive and cost-effective for any disaster recovery program from local to all over the world.\\r\\n\"},\"内容显示条数\":\"10\",\"所属页面\":\"Home\",\"功能类型\":\"自定义\",\"启用的字段\":\"链接,图片\",\"排序\":\"99\"}', 2, 1, 1662719297),
  303. (27, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"2\",\"模块ID\":\"2\",\"模块标题\":\"Our Technology\",\"模块标识\":\"tech\",\"模块描述\":\"At PeaSafe, we set a high standard to provide our frontliners with the best equipment and technology for Disaster Recovery. When an unpredicted disastrous event strikes, communication plays a vital role to respond ASAP to save lives. PeaSafe is the go-to name to provide the latest telecommunication services. PeaSafe is authorized to introduces the PeaRhino System from Peatalk which allows a vertical, rapid deploy tower that is easy to use, all self-contained, and is not restricted to existing tower locations. This flexibility makes it attractive and cost-effective for any disaster recovery program from local to all over the world.\\r\\n\",\"内容显示条数\":{\"更新前\":\"10\",\"更新后\":\"1\"},\"所属页面\":\"Home\",\"功能类型\":\"自定义\",\"启用的字段\":\"链接,图片\",\"排序\":\"99\"}', 2, 1, 1663031562),
  304. (28, 'page', 'data', '1,14,15', '页面管理.内容管理', 1, 1, '{\"ID\":\"2\",\"所属模块\":\"Our Technology\",\"功能类型\":\"自定义\",\"标题\":\"The PeaRhino Introduction\",\"图片\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/13\\/fb6381a43ae40fa20565a342f64af5db.jpg\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/13\\/fb6381a43ae40fa20565a342f64af5db.jpg\\\" width=\\\"150\\\">\",\"内容\":\"11\",\"排序\":\"1\"}', 2, 1, 1663033334),
  305. (29, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"2\",\"模块ID\":\"2\",\"模块标题\":\"Our Technology\",\"模块标识\":\"tech\",\"模块描述\":\"At PeaSafe, we set a high standard to provide our frontliners with the best equipment and technology for Disaster Recovery. When an unpredicted disastrous event strikes, communication plays a vital role to respond ASAP to save lives. PeaSafe is the go-to name to provide the latest telecommunication services. PeaSafe is authorized to introduces the PeaRhino System from Peatalk which allows a vertical, rapid deploy tower that is easy to use, all self-contained, and is not restricted to existing tower locations. This flexibility makes it attractive and cost-effective for any disaster recovery program from local to all over the world.\\r\\n\",\"内容显示条数\":\"1\",\"所属页面\":\"Home\",\"功能类型\":\"自定义\",\"启用的字段\":{\"更新前\":\"4,2,1\",\"更新后\":\"链接,图片\"},\"排序\":\"99\"}', 2, 1, 1663033346),
  306. (30, 'page', 'data', '1,14,15', '页面管理.内容管理', 2, 1, '{\"ID\":\"2\",\"所属模块\":\"Our Technology\",\"功能类型\":\"自定义\",\"标题\":\"The PeaRhino Introduction\",\"图片\":{\"更新前\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/13\\/fb6381a43ae40fa20565a342f64af5db.jpg\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/13\\/fb6381a43ae40fa20565a342f64af5db.jpg\\\" width=\\\"150\\\">\",\"更新后\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/13\\/f83a3adb5c94d83a70fce80926b20271.jpg\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/13\\/f83a3adb5c94d83a70fce80926b20271.jpg\\\" width=\\\"150\\\">\"},\"内容\":\"11\",\"排序\":\"1\"}', 2, 1, 1663033425),
  307. (31, 'page', 'module', '1,14,15', '页面管理.模块列表', 1, 1, '{\"ID\":\"3\",\"模块标题\":\"Our Readiness\",\"模块标识\":\"readiness\",\"模块描述\":\"The hidden unaware issues of domestic or abroad preparedness are more common than expected. The modern civilization of infrastructures continues to improve reliability, capability, and interoperability, but always lacks immediate response when disasters occurred\",\"内容显示条数\":\"10\",\"所属页面\":\"Home,Our Technology\",\"排序\":\"1\"}', 3, 1, 1663060425),
  308. (32, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"3\",\"模块ID\":\"3\",\"模块标题\":\"Our Readiness\",\"模块标识\":\"readiness\",\"模块描述\":\"The hidden unaware issues of domestic or abroad preparedness are more common than expected. The modern civilization of infrastructures continues to improve reliability, capability, and interoperability, but always lacks immediate response when disasters occurred\",\"内容显示条数\":\"10\",\"所属页面\":\"Home\",\"排序\":\"98\"}', 3, 1, 1663060435),
  309. (33, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"3\",\"模块ID\":\"3\",\"模块标题\":\"Our Readiness\",\"模块标识\":\"readiness\",\"模块描述\":\"The hidden unaware issues of domestic or abroad preparedness are more common than expected. The modern civilization of infrastructures continues to improve reliability, capability, and interoperability, but always lacks immediate response when disasters occurred\",\"内容显示条数\":\"10\",\"所属页面\":\"Home\",\"功能类型\":\"自定义\",\"启用的字段\":\"链接,图片\",\"排序\":\"98\"}', 3, 1, 1663141409),
  310. (34, 'page', 'data', '1,14,15', '页面管理.内容管理', 1, 1, '{\"ID\":\"3\",\"所属模块\":\"Our Readiness\",\"功能类型\":\"自定义\",\"标题\":\"Congestion overload\",\"图片\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/14\\/f3ccdd27d2000e3f9255a7e3e2c48800.jpg\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/14\\/f3ccdd27d2000e3f9255a7e3e2c48800.jpg\\\" width=\\\"150\\\">\",\"内容\":\"During all disasters, countless calls cannot go through due to network failure and\\/or congestion. This only adds to the chaos and generates further crisis. The surge of demand overwhelmed most of any current network. For earthquakes, landslides, volcanoes, wildfire, tsunami, and many other disaster events, most major Telco can only apply their “disaster management” plan by prioritizing network traffic. Even then, the solution is cut short for others who are trying to cope with the situation and are not able to reach their loved ones. \\r\\n\",\"排序\":\"1\"}', 3, 1, 1663141513),
  311. (35, 'page', 'data', '1,14,15', '页面管理.内容管理', 1, 1, '{\"ID\":\"4\",\"所属模块\":\"Our Readiness\",\"功能类型\":\"自定义\",\"标题\":\"Disruption of Infrastructure\",\"图片\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/14\\/156005c5baf40ff51a327f1c34f2975b.jpg\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/14\\/156005c5baf40ff51a327f1c34f2975b.jpg\\\" width=\\\"150\\\">\",\"内容\":\"All telecommunication networks always rely on local and regional technical systems to maintain functional operation. Once the local and regional systems fail during a disastrous event, telecommunication networks would equally suffer. \\r\\n\",\"排序\":\"1\"}', 4, 1, 1663141534),
  312. (36, 'page', 'data', '1,14,15', '页面管理.内容管理', 1, 1, '{\"ID\":\"5\",\"所属模块\":\"Our Readiness\",\"功能类型\":\"自定义\",\"标题\":\"Physical Destruction\",\"图片\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/14\\/799bad5a3b514f096e69bbc4a7896cd9.jpg\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/14\\/799bad5a3b514f096e69bbc4a7896cd9.jpg\\\" width=\\\"150\\\">\",\"内容\":\"Among other disruptions, physical destruction inflicts the most harm to the telecommunication network. Major funding equals a time-consuming process to rebuild. Hence, the physical destruction is always the most severe of all accounted disastrous events. The collapse of towers, buildings, bridges, severe cables takes months or years to recoup. \\r\\n\",\"排序\":\"1\"}', 5, 1, 1663141552),
  313. (37, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"3\",\"模块ID\":\"3\",\"模块标题\":\"Our Readiness\",\"模块标识\":\"readiness\",\"模块描述\":\"The hidden unaware issues of domestic or abroad preparedness are more common than expected. The modern civilization of infrastructures continues to improve reliability, capability, and interoperability, but always lacks immediate response when disasters occurred\",\"内容显示条数\":\"10\",\"所属页面\":\"Home\",\"功能类型\":\"自定义\",\"启用的字段\":{\"更新前\":\"4,2,1\",\"更新后\":\"链接,图片\"},\"排序\":\"98\"}', 3, 1, 1663143876),
  314. (38, 'page', 'module', '1,14,15', '页面管理.模块列表', 1, 1, '{\"ID\":\"4\",\"模块标题\":\"Our Markets\",\"模块标识\":\"market\",\"模块描述\":\"Communities are torn apart when disaster hits. Our frontliners risk their lives to rescue and save lives. But without communication, the daunting task would be impossible. PeaSafe Disaster Recovery with PeaRhino can re-connect our front-line teams.\",\"内容显示条数\":\"10\",\"所属页面\":\"Home\",\"功能类型\":\"自定义\",\"启用的字段\":\"链接\",\"排序\":\"1\"}', 4, 1, 1663145585),
  315. (39, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"4\",\"模块ID\":\"4\",\"模块标题\":\"Our Markets\",\"模块标识\":\"market\",\"模块描述\":\"Communities are torn apart when disaster hits. Our frontliners risk their lives to rescue and save lives. But without communication, the daunting task would be impossible. PeaSafe Disaster Recovery with PeaRhino can re-connect our front-line teams.\",\"内容显示条数\":{\"更新前\":\"10\",\"更新后\":\"1\"},\"所属页面\":\"Home\",\"功能类型\":\"自定义\",\"启用的字段\":\"链接\",\"排序\":\"97\"}', 4, 1, 1663145626),
  316. (40, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"4\",\"模块ID\":\"4\",\"模块标题\":\"Our Markets\",\"模块标识\":\"market\",\"模块描述\":\"Communities are torn apart when disaster hits. Our frontliners risk their lives to rescue and save lives. But without communication, the daunting task would be impossible. PeaSafe Disaster Recovery with PeaRhino can re-connect our front-line teams.\",\"内容显示条数\":\"1\",\"所属页面\":\"Home\",\"功能类型\":\"自定义\",\"启用的字段\":{\"更新前\":\"4,1\",\"更新后\":\"链接,图片\"},\"排序\":\"97\"}', 4, 1, 1663148627),
  317. (41, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"4\",\"模块ID\":\"4\",\"模块标题\":\"Our Markets\",\"模块标识\":\"market\",\"模块描述\":\"Communities are torn apart when disaster hits. Our frontliners risk their lives to rescue and save lives. But without communication, the daunting task would be impossible. PeaSafe Disaster Recovery with PeaRhino can re-connect our front-line teams.\",\"内容显示条数\":\"1\",\"所属页面\":\"Home\",\"功能类型\":\"自定义\",\"启用的字段\":\"链接,图片\",\"排序\":\"97\"}', 4, 1, 1663148644),
  318. (42, 'main', 'config', '1,17,18', '基础设置.网站基础信息', 2, 1, '{\"ID\":\"1\",\"平台ID\":\"1\",\"网站名称\":\"Peasafe\",\"网站介绍\":\"PeasafePeasafe\",\"网站描述\":\"PeasafePeasafe\",\"网站LOGO\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/08\\/2494cd430843ef1b8bfcc912beea910b.png\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/08\\/2494cd430843ef1b8bfcc912beea910b.png\\\" width=\\\"150\\\">\",\"客服电话\":\"15810090845\",\"联系邮箱\":{\"更新前\":\"2934170@qq.com\",\"更新后\":\"recover-now@peasafe.com\"},\"联系地址\":{\"更新前\":\"大望路华贸中心1号楼25层\",\"更新后\":\"10130 Warner Ave, Unit C Fountain Valley, CA 92708\"},\"Facebook链接\":\"#\",\"Twitter链接\":\"#\",\"LinkedIn链接\":\"#\",\"Instagram链接\":\"#\",\"底部信息\":\"©2021 PeaSafe. All rights reserved.\"}', 1, 1, 1663148837),
  319. (43, 'page', 'data', '1,14,15', '页面管理.内容管理', 1, 1, '{\"ID\":\"6\",\"所属模块\":\"Our Markets\",\"功能类型\":\"自定义\",\"标题\":\"t\",\"图片\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/14\\/4a47a0db6e60853dedfcfdf08a5ca249.png\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/14\\/4a47a0db6e60853dedfcfdf08a5ca249.png\\\" width=\\\"150\\\">\",\"内容\":\"22\",\"排序\":\"1\"}', 6, 1, 1663148906),
  320. (44, 'page', 'data', '1,14,15', '页面管理.内容管理', 1, 1, '{\"ID\":\"7\",\"所属模块\":\"Our Markets\",\"功能类型\":\"自定义\",\"标题\":\"2\",\"图片\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/14\\/fb5c81ed3a220004b71069645f112867.png\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/14\\/fb5c81ed3a220004b71069645f112867.png\\\" width=\\\"150\\\">\",\"内容\":\"2\",\"排序\":\"1\"}', 7, 1, 1663148914),
  321. (45, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"4\",\"模块ID\":\"4\",\"模块标题\":\"Our Markets\",\"模块标识\":\"market\",\"模块描述\":\"Communities are torn apart when disaster hits. Our frontliners risk their lives to rescue and save lives. But without communication, the daunting task would be impossible. PeaSafe Disaster Recovery with PeaRhino can re-connect our front-line teams.\",\"内容显示条数\":{\"更新前\":\"1\",\"更新后\":\"2\"},\"所属页面\":\"Home\",\"功能类型\":\"自定义\",\"启用的字段\":\"链接,图片\",\"排序\":\"97\"}', 4, 1, 1663149046),
  322. (46, 'page', 'data', '1,14,15', '页面管理.内容管理', 2, 1, '{\"ID\":\"6\",\"所属模块\":\"Our Markets\",\"功能类型\":\"自定义\",\"标题\":\"t\",\"图片\":{\"更新前\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/14\\/4a47a0db6e60853dedfcfdf08a5ca249.png\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/14\\/4a47a0db6e60853dedfcfdf08a5ca249.png\\\" width=\\\"150\\\">\",\"更新后\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/14\\/10fb15c77258a991b0028080a64fb42d.png\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/14\\/10fb15c77258a991b0028080a64fb42d.png\\\" width=\\\"150\\\">\"},\"内容\":\"22\",\"排序\":\"10\"}', 6, 1, 1663149146),
  323. (47, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"4\",\"模块ID\":\"4\",\"模块标题\":\"Our Markets\",\"模块标识\":\"market\",\"模块描述\":{\"更新前\":\"Communities are torn apart when disaster hits. Our frontliners risk their lives to rescue and save lives. But without communication, the daunting task would be impossible. PeaSafe Disaster Recovery with PeaRhino can re-connect our front-line teams.\",\"更新后\":\"\\r\\nCommunities are torn apart when disaster hits. Our frontliners risk their lives to rescue and save lives. But without communication, the daunting task would be impossible.\\r\\n\\r\\nPeaSafe Disaster Recovery with PeaRhinos can re-connect our front-line teams. From a plane crash site to a hurricane zone, from a mudslide to an earthquake, and\\/or from a wildfire to a tsunami, PeaSafe can partner up with local government agencies to provide a telecommunication network during the disastrous event. Police, Fire, EMS, Hospital, and FEMA are among many agencies that our system can provide telecommunication network solutions as soon as it deploys right in the heart of ground zero.\"},\"内容显示条数\":\"2\",\"所属页面\":\"Home\",\"功能类型\":\"自定义\",\"启用的字段\":\"链接,图片\",\"排序\":\"97\"}', 4, 1, 1663149172),
  324. (48, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"4\",\"模块ID\":\"4\",\"模块标题\":\"Our Markets\",\"模块标识\":\"market\",\"模块描述\":{\"更新前\":\"\\r\\nCommunities are torn apart when disaster hits. Our frontliners risk their lives to rescue and save lives. But without communication, the daunting task would be impossible.\\r\\n\\r\\nPeaSafe Disaster Recovery with PeaRhinos can re-connect our front-line teams. From a plane crash site to a hurricane zone, from a mudslide to an earthquake, and\\/or from a wildfire to a tsunami, PeaSafe can partner up with local government agencies to provide a telecommunication network during the disastrous event. Police, Fire, EMS, Hospital, and FEMA are among many agencies that our system can provide telecommunication network solutions as soon as it deploys right in the heart of ground zero.\",\"更新后\":\"Communities are torn apart when disaster hits. Our frontliners risk their lives to rescue and save lives. But without communication, the daunting task would be impossible.\\r\\n\\r\\n\\r\\nPeaSafe Disaster Recovery with PeaRhinos can re-connect our front-line teams. From a plane crash site to a hurricane zone, from a mudslide to an earthquake, and\\/or from a wildfire to a tsunami, PeaSafe can partner up with local government agencies to provide a telecommunication network during the disastrous event. Police, Fire, EMS, Hospital, and FEMA are among many agencies that our system can provide telecommunication network solutions as soon as it deploys right in the heart of ground zero.\"},\"内容显示条数\":\"2\",\"所属页面\":\"Home\",\"功能类型\":\"自定义\",\"启用的字段\":\"链接,图片\",\"排序\":\"97\"}', 4, 1, 1663149182),
  325. (49, 'page', 'col', '1,14,16', '页面管理.字段设置', 2, 1, '{\"ID\":\"4\",\"字段名称\":\"内容\",\"字段标识\":\"content\",\"字段描述\":\"内容\",\"类型\":{\"更新前\":\"长文本\",\"更新后\":\"编辑器\"},\"排序(数值越大越靠前)\":\"1\"}', 4, 1, 1663149197),
  326. (50, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"4\",\"模块ID\":\"4\",\"模块标题\":\"Our Markets\",\"模块标识\":\"market\",\"模块描述\":\"Communities are torn apart when disaster hits. Our frontliners risk their lives to rescue and save lives. But without communication, the daunting task would be impossible.\\r\\n\\r\\n\\r\\nPeaSafe Disaster Recovery with PeaRhinos can re-connect our front-line teams. From a plane crash site to a hurricane zone, from a mudslide to an earthquake, and\\/or from a wildfire to a tsunami, PeaSafe can partner up with local government agencies to provide a telecommunication network during the disastrous event. Police, Fire, EMS, Hospital, and FEMA are among many agencies that our system can provide telecommunication network solutions as soon as it deploys right in the heart of ground zero.\",\"内容显示条数\":\"2\",\"所属页面\":\"Home\",\"功能类型\":\"自定义\",\"启用的字段\":\"链接,图片\",\"排序\":\"97\"}', 4, 1, 1663149206),
  327. (51, 'page', 'col', '1,14,16', '页面管理.字段设置', 2, 1, '{\"ID\":\"4\",\"字段名称\":\"内容\",\"字段标识\":\"content\",\"字段描述\":\"内容\",\"类型\":{\"更新前\":\"编辑器\",\"更新后\":\"长文本\"},\"排序(数值越大越靠前)\":\"1\"}', 4, 1, 1663149232),
  328. (52, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"4\",\"模块ID\":\"4\",\"模块标题\":\"Our Markets\",\"模块标识\":\"market\",\"模块描述\":{\"更新前\":\"Communities are torn apart when disaster hits. Our frontliners risk their lives to rescue and save lives. But without communication, the daunting task would be impossible.\\r\\n\\r\\n\\r\\nPeaSafe Disaster Recovery with PeaRhinos can re-connect our front-line teams. From a plane crash site to a hurricane zone, from a mudslide to an earthquake, and\\/or from a wildfire to a tsunami, PeaSafe can partner up with local government agencies to provide a telecommunication network during the disastrous event. Police, Fire, EMS, Hospital, and FEMA are among many agencies that our system can provide telecommunication network solutions as soon as it deploys right in the heart of ground zero.\",\"更新后\":\"<p>\\r\\n\\tCommunities are torn apart when disaster hits. Our frontliners risk their lives to rescue and save lives. But without communication, the daunting task would be impossible. \\r\\n<\\/p>\\r\\n<p>\\r\\n\\t<br \\/>\\r\\n<\\/p>\\r\\n<p>\\r\\n\\tPeaSafe Disaster Recovery with PeaRhinos can re-connect our front-line teams. From a plane crash site to a hurricane zone, from a mudslide to an earthquake, and\\/or from a wildfire to a tsunami, PeaSafe can partner up with local government agencies to provide a telecommunication network during the disastrous event. Police, Fire, EMS, Hospital, and FEMA are among many agencies that our system can provide telecommunication network solutions as soon as it deploys right in the heart of ground zero.\\r\\n<\\/p>\\r\\n\\t<\\/div>\\r\\n<\\/div>\\r\\n\\t<\\/div>\\r\\n<\\/div>\\r\\n\\t<\\/div>\\r\\n<\\/div>\"},\"内容显示条数\":\"2\",\"所属页面\":\"Home\",\"功能类型\":\"自定义\",\"启用的字段\":\"链接,图片\",\"排序\":\"97\"}', 4, 1, 1663149288),
  329. (53, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"2\",\"模块ID\":\"2\",\"模块标题\":\"Our Technology\",\"模块标识\":\"tech\",\"模块描述\":{\"更新前\":\"At PeaSafe, we set a high standard to provide our frontliners with the best equipment and technology for Disaster Recovery. When an unpredicted disastrous event strikes, communication plays a vital role to respond ASAP to save lives. PeaSafe is the go-to name to provide the latest telecommunication services. PeaSafe is authorized to introduces the PeaRhino System from Peatalk which allows a vertical, rapid deploy tower that is easy to use, all self-contained, and is not restricted to existing tower locations. This flexibility makes it attractive and cost-effective for any disaster recovery program from local to all over the world.\\r\\n\",\"更新后\":\"<p>\\r\\n\\tAt PeaSafe, we set a high standard to provide our frontliners with the best equipment and technology for Disaster Recovery. When an unpredicted disastrous event strikes, communication plays a vital role to respond ASAP to save lives. \\r\\n<\\/p>\\r\\n<p>\\r\\n\\t<br \\/>\\r\\n<\\/p>\\r\\n<p>\\r\\n\\tPeaSafe is the go-to name to provide the latest telecommunication services. PeaSafe is authorized to introduces the PeaRhino System from Peatalk which allows a vertical, rapid deploy tower that is easy to use, all self-contained, and is not restricted to existing tower locations. This flexibility makes it attractive and cost-effective for any disaster recovery program from local to all over the world.\\r\\n<\\/p>\"},\"内容显示条数\":\"1\",\"所属页面\":\"Home\",\"功能类型\":\"自定义\",\"启用的字段\":{\"更新前\":\"图片\",\"更新后\":\"链接,图片\"},\"排序\":\"99\"}', 2, 1, 1663149309),
  330. (54, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"2\",\"模块ID\":\"2\",\"模块标题\":\"Our Technology\",\"模块标识\":\"tech\",\"模块描述\":{\"更新前\":\"<p>\\r\\n\\tAt PeaSafe, we set a high standard to provide our frontliners with the best equipment and technology for Disaster Recovery. When an unpredicted disastrous event strikes, communication plays a vital role to respond ASAP to save lives. \\r\\n<\\/p>\\r\\n<p>\\r\\n\\t<br \\/>\\r\\n<\\/p>\\r\\n<p>\\r\\n\\tPeaSafe is the go-to name to provide the latest telecommunication services. PeaSafe is authorized to introduces the PeaRhino System from Peatalk which allows a vertical, rapid deploy tower that is easy to use, all self-contained, and is not restricted to existing tower locations. This flexibility makes it attractive and cost-effective for any disaster recovery program from local to all over the world.\\r\\n<\\/p>\",\"更新后\":\"<p>\\r\\n\\tAt PeaSafe, we set a high standard to provide our frontliners with the best equipment and technology for Disaster Recovery. When an unpredicted disastrous event strikes, communication plays a vital role to respond ASAP to save lives.\\r\\n<\\/p>\\r\\n<p>\\r\\n\\tPeaSafe is the go-to name to provide the latest telecommunication services. PeaSafe is authorized to introduces the PeaRhino System from Peatalk which allows a vertical, rapid deploy tower that is easy to use, all self-contained, and is not restricted to existing tower locations. This flexibility makes it attractive and cost-effective for any disaster recovery program from local to all over the world.\\r\\n<\\/p>\"},\"内容显示条数\":\"1\",\"所属页面\":\"Home\",\"功能类型\":\"自定义\",\"启用的字段\":{\"更新前\":\"图片\",\"更新后\":\"链接,图片\"},\"排序\":\"99\"}', 2, 1, 1663149317),
  331. (55, 'page', 'module', '1,14,15', '页面管理.模块列表', 1, 1, '{\"ID\":\"5\",\"模块标题\":\"Our Services\",\"模块标识\":\"service\",\"模块描述\":\"<span style=\\\"color:#333333;font-family:Poppins;font-size:16px;text-align:center;white-space:normal;background-color:#FFFFFF;\\\">Our fleet of PeaRhinos are updated with routine services and maintenances.<\\/span><br style=\\\"box-sizing:border-box;color:#333333;font-family:Poppins;font-size:16px;text-align:center;white-space:normal;background-color:#FFFFFF;\\\" \\/>\\r\\n<span style=\\\"color:#333333;font-family:Poppins;font-size:16px;text-align:center;white-space:normal;background-color:#FFFFFF;\\\">PeaRhinos are on stand-by and ready to launch into action.<\\/span>\",\"内容显示条数\":\"10\",\"所属页面\":\"Home,Our Technology\",\"排序\":\"1\"}', 5, 1, 1663150685),
  332. (56, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"5\",\"模块ID\":\"5\",\"模块标题\":\"Our Services\",\"模块标识\":\"service\",\"模块描述\":\"<span style=\\\"color:#333333;font-family:Poppins;font-size:16px;text-align:center;white-space:normal;background-color:#FFFFFF;\\\">Our fleet of PeaRhinos are updated with routine services and maintenances.<\\/span><br style=\\\"box-sizing:border-box;color:#333333;font-family:Poppins;font-size:16px;text-align:center;white-space:normal;background-color:#FFFFFF;\\\" \\/>\\r\\n<span style=\\\"color:#333333;font-family:Poppins;font-size:16px;text-align:center;white-space:normal;background-color:#FFFFFF;\\\">PeaRhinos are on stand-by and ready to launch into action.<\\/span>\",\"内容显示条数\":\"10\",\"所属页面\":\"Home\",\"排序\":\"1\"}', 5, 1, 1663150692),
  333. (57, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"5\",\"模块ID\":\"5\",\"模块标题\":\"Our Services\",\"模块标识\":\"service\",\"模块描述\":\"<span style=\\\"color:#333333;font-family:Poppins;font-size:16px;text-align:center;white-space:normal;background-color:#FFFFFF;\\\">Our fleet of PeaRhinos are updated with routine services and maintenances.<\\/span><br style=\\\"box-sizing:border-box;color:#333333;font-family:Poppins;font-size:16px;text-align:center;white-space:normal;background-color:#FFFFFF;\\\" \\/>\\r\\n<span style=\\\"color:#333333;font-family:Poppins;font-size:16px;text-align:center;white-space:normal;background-color:#FFFFFF;\\\">PeaRhinos are on stand-by and ready to launch into action.<\\/span>\",\"内容显示条数\":\"10\",\"所属页面\":\"Home\",\"排序\":\"96\"}', 5, 1, 1663150701),
  334. (58, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"5\",\"模块ID\":\"5\",\"模块标题\":\"Our Services\",\"模块标识\":\"service\",\"模块描述\":\"<span style=\\\"color:#333333;font-family:Poppins;font-size:16px;text-align:center;white-space:normal;background-color:#FFFFFF;\\\">Our fleet of PeaRhinos are updated with routine services and maintenances.<\\/span><br style=\\\"box-sizing:border-box;color:#333333;font-family:Poppins;font-size:16px;text-align:center;white-space:normal;background-color:#FFFFFF;\\\" \\/>\\r\\n<span style=\\\"color:#333333;font-family:Poppins;font-size:16px;text-align:center;white-space:normal;background-color:#FFFFFF;\\\">PeaRhinos are on stand-by and ready to launch into action.<\\/span>\",\"内容显示条数\":{\"更新前\":\"10\",\"更新后\":\"4\"},\"所属页面\":\"Home\",\"功能类型\":\"自定义\",\"启用的字段\":\"链接,图片\",\"排序\":\"96\"}', 5, 1, 1663205910),
  335. (59, 'page', 'data', '1,14,15', '页面管理.内容管理', 1, 1, '{\"ID\":\"8\",\"所属模块\":\"Our Services\",\"功能类型\":\"自定义\",\"标题\":\"Rent\",\"图片\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/15\\/18e2999891374a475d0687ca9f989d83.jpg\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/15\\/18e2999891374a475d0687ca9f989d83.jpg\\\" width=\\\"150\\\">\",\"排序\":\"9\"}', 8, 1, 1663205938),
  336. (60, 'page', 'data', '1,14,15', '页面管理.内容管理', 1, 1, '{\"ID\":\"9\",\"所属模块\":\"Our Services\",\"功能类型\":\"自定义\",\"标题\":\"Purchase\",\"图片\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/15\\/fe5df232cafa4c4e0f1a0294418e5660.jpg\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/15\\/fe5df232cafa4c4e0f1a0294418e5660.jpg\\\" width=\\\"150\\\">\",\"排序\":\"8\"}', 9, 1, 1663205949),
  337. (61, 'page', 'data', '1,14,15', '页面管理.内容管理', 1, 1, '{\"ID\":\"10\",\"所属模块\":\"Our Services\",\"功能类型\":\"自定义\",\"标题\":\"Lease\",\"图片\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/15\\/8cda81fc7ad906927144235dda5fdf15.jpg\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/15\\/8cda81fc7ad906927144235dda5fdf15.jpg\\\" width=\\\"150\\\">\",\"排序\":\"7\"}', 10, 1, 1663205958),
  338. (62, 'page', 'data', '1,14,15', '页面管理.内容管理', 1, 1, '{\"ID\":\"11\",\"所属模块\":\"Our Services\",\"功能类型\":\"自定义\",\"标题\":\"Subscribed\",\"图片\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/15\\/30e62fddc14c05988b44e7c02788e187.jpg\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/15\\/30e62fddc14c05988b44e7c02788e187.jpg\\\" width=\\\"150\\\">\",\"排序\":\"5\"}', 11, 1, 1663205969),
  339. (63, 'page', 'module', '1,14,15', '页面管理.模块列表', 1, 1, '{\"ID\":\"6\",\"模块标题\":\"Contact Us\",\"模块标识\":\"contact\",\"模块描述\":\"Are you Ready for a Better,more Productive Business?\",\"内容显示条数\":\"10\",\"所属页面\":\"Home\",\"排序\":\"1\"}', 6, 1, 1663208376),
  340. (64, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"6\",\"模块ID\":\"6\",\"模块标题\":\"Contact Us\",\"模块标识\":\"contact\",\"模块描述\":\"Are you Ready for a Better,more Productive Business?\",\"内容显示条数\":\"10\",\"所属页面\":{\"更新前\":\"Home\",\"更新后\":\"Home,Our Technology\"},\"排序\":\"95\"}', 6, 1, 1663213600),
  341. (65, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"6\",\"模块ID\":\"6\",\"模块标题\":\"Contact Us\",\"模块标识\":\"contact\",\"模块描述\":\"Are you Ready for a Better,more Productive Business?\",\"内容显示条数\":\"10\",\"所属页面\":{\"更新前\":\"Home\",\"更新后\":\"Home,Our Technology\"},\"排序\":\"95\"}', 6, 1, 1663220001),
  342. (66, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"5\",\"模块ID\":\"5\",\"模块标题\":\"Our Services\",\"模块标识\":\"service\",\"模块描述\":\"<span style=\\\"color:#333333;font-family:Poppins;font-size:16px;text-align:center;white-space:normal;background-color:#FFFFFF;\\\">Our fleet of PeaRhinos are updated with routine services and maintenances.<\\/span><br style=\\\"box-sizing:border-box;color:#333333;font-family:Poppins;font-size:16px;text-align:center;white-space:normal;background-color:#FFFFFF;\\\" \\/>\\r\\n<span style=\\\"color:#333333;font-family:Poppins;font-size:16px;text-align:center;white-space:normal;background-color:#FFFFFF;\\\">PeaRhinos are on stand-by and ready to launch into action.<\\/span>\",\"内容显示条数\":\"4\",\"所属页面\":\"Home\",\"功能类型\":\"自定义\",\"启用的字段\":{\"更新前\":\"图片\",\"更新后\":\"链接,图片\"},\"排序\":\"96\"}', 5, 1, 1663220005),
  343. (67, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"4\",\"模块ID\":\"4\",\"模块标题\":\"Our Markets\",\"模块标识\":\"market\",\"模块描述\":{\"更新前\":\"<p>\\r\\n\\tCommunities are torn apart when disaster hits. Our frontliners risk their lives to rescue and save lives. But without communication, the daunting task would be impossible. \\r\\n<\\/p>\\r\\n<p>\\r\\n\\t<br \\/>\\r\\n<\\/p>\\r\\n<p>\\r\\n\\tPeaSafe Disaster Recovery with PeaRhinos can re-connect our front-line teams. From a plane crash site to a hurricane zone, from a mudslide to an earthquake, and\\/or from a wildfire to a tsunami, PeaSafe can partner up with local government agencies to provide a telecommunication network during the disastrous event. Police, Fire, EMS, Hospital, and FEMA are among many agencies that our system can provide telecommunication network solutions as soon as it deploys right in the heart of ground zero.\\r\\n<\\/p>\\r\\n\\t<\\/div>\\r\\n<\\/div>\\r\\n\\t<\\/div>\\r\\n<\\/div>\\r\\n\\t<\\/div>\\r\\n<\\/div>\",\"更新后\":\"<p>\\r\\n\\tCommunities are torn apart when disaster hits. Our frontliners risk their lives to rescue and save lives. But without communication, the daunting task would be impossible.\\r\\n<\\/p>\\r\\n<p>\\r\\n\\t<br \\/>\\r\\n<\\/p>\\r\\n<p>\\r\\n\\tPeaSafe Disaster Recovery with PeaRhinos can re-connect our front-line teams. From a plane crash site to a hurricane zone, from a mudslide to an earthquake, and\\/or from a wildfire to a tsunami, PeaSafe can partner up with local government agencies to provide a telecommunication network during the disastrous event. Police, Fire, EMS, Hospital, and FEMA are among many agencies that our system can provide telecommunication network solutions as soon as it deploys right in the heart of ground zero.\\r\\n<\\/p>\"},\"内容显示条数\":\"2\",\"所属页面\":\"Home\",\"功能类型\":\"自定义\",\"启用的字段\":\"链接,图片\",\"排序\":\"97\"}', 4, 1, 1663220009),
  344. (68, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"3\",\"模块ID\":\"3\",\"模块标题\":\"Our Readiness\",\"模块标识\":\"readiness\",\"模块描述\":\"The hidden unaware issues of domestic or abroad preparedness are more common than expected. The modern civilization of infrastructures continues to improve reliability, capability, and interoperability, but always lacks immediate response when disasters occurred\",\"内容显示条数\":\"10\",\"所属页面\":\"Home\",\"功能类型\":\"自定义\",\"启用的字段\":{\"更新前\":\"图片\",\"更新后\":\"链接,图片\"},\"排序\":\"98\"}', 3, 1, 1663220012),
  345. (69, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"2\",\"模块ID\":\"2\",\"模块标题\":\"Our Technology\",\"模块标识\":\"tech\",\"模块描述\":\"<p>\\r\\n\\tAt PeaSafe, we set a high standard to provide our frontliners with the best equipment and technology for Disaster Recovery. When an unpredicted disastrous event strikes, communication plays a vital role to respond ASAP to save lives.\\r\\n<\\/p>\\r\\n<p>\\r\\n\\tPeaSafe is the go-to name to provide the latest telecommunication services. PeaSafe is authorized to introduces the PeaRhino System from Peatalk which allows a vertical, rapid deploy tower that is easy to use, all self-contained, and is not restricted to existing tower locations. This flexibility makes it attractive and cost-effective for any disaster recovery program from local to all over the world.\\r\\n<\\/p>\",\"内容显示条数\":\"1\",\"所属页面\":\"Home\",\"功能类型\":\"自定义\",\"启用的字段\":{\"更新前\":\"图片\",\"更新后\":\"链接,图片\"},\"排序\":\"99\"}', 2, 1, 1663220015),
  346. (70, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"1\",\"模块ID\":\"1\",\"模块标题\":\"Banner\",\"模块标识\":\"banner\",\"模块描述\":\"Banner\",\"内容显示条数\":\"3\",\"所属页面\":\"Home\",\"功能类型\":\"自定义\",\"启用的字段\":\"链接,图片\",\"排序\":\"100\"}', 1, 1, 1663220196),
  347. (71, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"2\",\"模块ID\":\"2\",\"模块标题\":\"Our Technology\",\"模块标识\":\"tech\",\"模块描述\":\"<p>\\r\\n\\tAt PeaSafe, we set a high standard to provide our frontliners with the best equipment and technology for Disaster Recovery. When an unpredicted disastrous event strikes, communication plays a vital role to respond ASAP to save lives.\\r\\n<\\/p>\\r\\n<p>\\r\\n\\tPeaSafe is the go-to name to provide the latest telecommunication services. PeaSafe is authorized to introduces the PeaRhino System from Peatalk which allows a vertical, rapid deploy tower that is easy to use, all self-contained, and is not restricted to existing tower locations. This flexibility makes it attractive and cost-effective for any disaster recovery program from local to all over the world.\\r\\n<\\/p>\",\"内容显示条数\":\"1\",\"所属页面\":\"Home\",\"功能类型\":\"自定义\",\"启用的字段\":{\"更新前\":\"图片\",\"更新后\":\"链接,图片\"},\"排序\":\"99\"}', 2, 1, 1663220200),
  348. (72, 'page', 'page', '1,14,16', '页面管理.页面列表', 1, 1, '{\"ID\":\"3\",\"页面名称\":\"Contact Us\",\"页面标识\":\"contact\",\"页面描述\":\"11\",\"排序\":\"1\"}', 3, 1, 1663221988),
  349. (73, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"6\",\"模块ID\":\"6\",\"模块标题\":\"Contact Us\",\"模块标识\":\"contact\",\"模块描述\":\"Are you Ready for a Better,more Productive Business?\",\"内容显示条数\":\"10\",\"所属页面\":{\"更新前\":\"Home\",\"更新后\":\"Home,Contact Us\"},\"排序\":\"95\"}', 6, 1, 1663222048),
  350. (74, 'page', 'data', '1,14,15', '页面管理.内容管理', 3, 1, '{\"ID\":\"1\",\"方式\":\"逻辑删除\"}', 1, 1, 1663228226),
  351. (75, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"1\",\"模块ID\":\"1\",\"模块标题\":\"Banner\",\"模块标识\":\"banner\",\"模块描述\":\"Banner\",\"内容显示条数\":{\"更新前\":\"3\",\"更新后\":\"1\"},\"所属页面\":\"Home\",\"功能类型\":\"自定义\",\"启用的字段\":\"链接,图片\",\"排序\":\"100\"}', 1, 1, 1663228232),
  352. (76, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"1\",\"模块ID\":\"1\",\"模块标题\":\"Banner\",\"模块标识\":\"banner\",\"模块描述\":\"Banner\",\"是否显示内容\":{\"更新前\":\"显示\",\"更新后\":\"不显示\"},\"内容显示条数\":\"1\",\"所属页面\":\"Home\",\"内容功能类型\":\"自定义\",\"内容启用的字段\":\"链接,图片\",\"排序\":\"100\"}', 1, 1, 1663228967),
  353. (77, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"1\",\"模块ID\":\"1\",\"模块标题\":{\"更新前\":\"Banner\",\"更新后\":\"Recover from Disaster Now\"},\"模块标识\":\"banner\",\"模块图片\":{\"更新前\":\"\",\"更新后\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/15\\/e18ec2c93dc39543b30bcb98139ae95d.jpg\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/15\\/e18ec2c93dc39543b30bcb98139ae95d.jpg\\\" width=\\\"150\\\">\"},\"模块描述\":{\"更新前\":\"Banner\",\"更新后\":\"PeaSafe answers to unforeseen disastrous events to avoid unwanted halt of communication.\"},\"是否显示内容\":\"不显示\",\"内容显示条数\":\"1\",\"所属页面\":\"Home\",\"内容功能类型\":\"自定义\",\"内容启用的字段\":\"链接,图片\",\"排序\":\"100\"}', 1, 1, 1663232443),
  354. (78, 'page', 'module', '1,14,15', '页面管理.模块列表', 1, 1, '{\"ID\":\"7\",\"模块标题\":\"Our Technology\",\"模块标识\":\"banner\",\"模块图片\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/15\\/3b82b6e2e9f62bcaac7bb7dfe0be9c18.jpg\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/15\\/3b82b6e2e9f62bcaac7bb7dfe0be9c18.jpg\\\" width=\\\"150\\\">\",\"模块描述\":\"At PeaSafe, we set a high standard to provide our frontliners with the best equipment and technology for Disaster Recovery. When an unpredicted disastrous event strikes, communication plays a vital role to respond ASAP to save lives. PeaSafe is the go-to name to provide Disaster Recovery telecommunication services. PeaSafe proudly introduces the PeaRhinos. The PeaRhinos allow a vertical, rapid deployed tower that is easy to use, all self-contained and are not restricted to existing tower locations. This flexibility makes them attractive and cost-effective for any disaster recovery program from local to all over the world.\",\"是否显示内容\":\"显示\",\"内容显示条数\":\"10\",\"所属页面\":\"Our Technology\",\"排序\":\"1\"}', 7, 1, 1663232612),
  355. (79, 'page', 'module', '1,14,15', '页面管理.模块列表', 1, 1, '{\"ID\":\"8\",\"模块标题\":\"The PeaRhino Introduction\",\"模块标识\":\"market\",\"是否显示内容\":\"显示\",\"内容显示条数\":\"10\",\"所属页面\":\"Our Technology\",\"排序\":\"1\"}', 8, 1, 1663232815),
  356. (80, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"8\",\"模块ID\":\"8\",\"模块标题\":\"The PeaRhino Introduction\",\"模块标识\":\"market\",\"模块描述\":{\"更新前\":\"\",\"更新后\":\"<p>\\r\\n\\tPeaSafe is extremely confident in bringing “PeaRhino” to serve Disaster Recovery. \\r\\n<\\/p>\\r\\n<p>\\r\\n\\t<br \\/>\\r\\n<\\/p>\\r\\n<p>\\r\\n\\tAn unforeseen natural disastrous event can change a community overnight. Critical moments to respond can quickly prevent a recovery to a halt and save lives. This is why PeaRhino for Disaster Recovery can support frontline workers to maintain their communication. In the event of a plane crash in a remote area, wildfire, or severe weather that can cut off power lines and cell towers, our transportable Cell sites\\/networks can provide communication to our frontline workers such as police, fire, EMS, hospitals, and FEMA.\\r\\n<\\/p>\"},\"是否显示内容\":\"显示\",\"内容显示条数\":\"10\",\"所属页面\":\"Our Technology\",\"排序\":\"79\"}', 8, 1, 1663232872);
  357. INSERT INTO `peasafe_manage_log` (`id`, `project`, `table`, `menu_id`, `name`, `type`, `admin`, `info`, `tid`, `state`, `cdate`) VALUES
  358. (81, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"8\",\"模块ID\":\"8\",\"模块标题\":\"The PeaRhino Introduction\",\"模块标识\":\"market\",\"模块描述\":{\"更新前\":\"<p>\\r\\n\\tPeaSafe is extremely confident in bringing “PeaRhino” to serve Disaster Recovery. \\r\\n<\\/p>\\r\\n<p>\\r\\n\\t<br \\/>\\r\\n<\\/p>\\r\\n<p>\\r\\n\\tAn unforeseen natural disastrous event can change a community overnight. Critical moments to respond can quickly prevent a recovery to a halt and save lives. This is why PeaRhino for Disaster Recovery can support frontline workers to maintain their communication. In the event of a plane crash in a remote area, wildfire, or severe weather that can cut off power lines and cell towers, our transportable Cell sites\\/networks can provide communication to our frontline workers such as police, fire, EMS, hospitals, and FEMA.\\r\\n<\\/p>\",\"更新后\":\"<p>\\r\\n\\tPeaSafe is extremely confident in bringing “PeaRhino” to serve Disaster Recovery.\\r\\n<\\/p>\\r\\n<p>\\r\\n\\t<br \\/>\\r\\n<\\/p>\\r\\n<p>\\r\\n\\tAn unforeseen natural disastrous event can change a community overnight. Critical moments to respond can quickly prevent a recovery to a halt and save lives. This is why PeaRhino for Disaster Recovery can support frontline workers to maintain their communication. In the event of a plane crash in a remote area, wildfire, or severe weather that can cut off power lines and cell towers, our transportable Cell sites\\/networks can provide communication to our frontline workers such as police, fire, EMS, hospitals, and FEMA.\\r\\n<\\/p>\"},\"是否显示内容\":\"显示\",\"内容显示条数\":{\"更新前\":\"10\",\"更新后\":\"2\"},\"所属页面\":\"Our Technology\",\"内容功能类型\":\"自定义\",\"内容启用的字段\":\"链接,图片\",\"排序\":\"79\"}', 8, 1, 1663233187),
  359. (82, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"4\",\"模块ID\":\"4\",\"模块标题\":\"Our Markets\",\"模块标识\":\"market\",\"模块描述\":\"<p>\\r\\n\\tCommunities are torn apart when disaster hits. Our frontliners risk their lives to rescue and save lives. But without communication, the daunting task would be impossible.\\r\\n<\\/p>\\r\\n<p>\\r\\n\\t<br \\/>\\r\\n<\\/p>\\r\\n<p>\\r\\n\\tPeaSafe Disaster Recovery with PeaRhinos can re-connect our front-line teams. From a plane crash site to a hurricane zone, from a mudslide to an earthquake, and\\/or from a wildfire to a tsunami, PeaSafe can partner up with local government agencies to provide a telecommunication network during the disastrous event. Police, Fire, EMS, Hospital, and FEMA are among many agencies that our system can provide telecommunication network solutions as soon as it deploys right in the heart of ground zero.\\r\\n<\\/p>\",\"是否显示内容\":\"显示\",\"内容显示条数\":\"2\",\"所属页面\":\"Home\",\"内容功能类型\":\"自定义\",\"内容启用的字段\":{\"更新前\":\"4,2,1\",\"更新后\":\"链接,图片\"},\"排序\":\"97\"}', 4, 1, 1663233194),
  360. (83, 'page', 'data', '1,14,15', '页面管理.内容管理', 1, 1, '{\"ID\":\"12\",\"所属模块\":\"The PeaRhino Introduction\",\"功能类型\":\"自定义\",\"标题\":\"1\",\"图片\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/15\\/8e1d9b7c546278946c8221ae4f3cf7a1.jpg\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/15\\/8e1d9b7c546278946c8221ae4f3cf7a1.jpg\\\" width=\\\"150\\\">\",\"排序\":\"1\"}', 12, 1, 1663233264),
  361. (84, 'page', 'data', '1,14,15', '页面管理.内容管理', 1, 1, '{\"ID\":\"13\",\"所属模块\":\"The PeaRhino Introduction\",\"功能类型\":\"自定义\",\"标题\":\"2\",\"图片\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/15\\/32477b9e4abfddc67181f46bb401285a.jpg\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/15\\/32477b9e4abfddc67181f46bb401285a.jpg\\\" width=\\\"150\\\">\",\"排序\":\"1\"}', 13, 1, 1663233272),
  362. (85, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"8\",\"模块ID\":\"8\",\"模块标题\":\"The PeaRhino Introduction\",\"模块标识\":\"market\",\"模块描述\":{\"更新前\":\"<p>\\r\\n\\tPeaSafe is extremely confident in bringing “PeaRhino” to serve Disaster Recovery.\\r\\n<\\/p>\\r\\n<p>\\r\\n\\t<br \\/>\\r\\n<\\/p>\\r\\n<p>\\r\\n\\tAn unforeseen natural disastrous event can change a community overnight. Critical moments to respond can quickly prevent a recovery to a halt and save lives. This is why PeaRhino for Disaster Recovery can support frontline workers to maintain their communication. In the event of a plane crash in a remote area, wildfire, or severe weather that can cut off power lines and cell towers, our transportable Cell sites\\/networks can provide communication to our frontline workers such as police, fire, EMS, hospitals, and FEMA.\\r\\n<\\/p>\",\"更新后\":\"<p>\\r\\n\\tPeaSafe is extremely confident in bringing “PeaRhino” to serve Disaster Recovery.\\r\\n<\\/p>\\r\\n<p>\\r\\n\\tAn unforeseen natural disastrous event can change a community overnight. Critical moments to respond can quickly prevent a recovery to a halt and save lives. This is why PeaRhino for Disaster Recovery can support frontline workers to maintain their communication. In the event of a plane crash in a remote area, wildfire, or severe weather that can cut off power lines and cell towers, our transportable Cell sites\\/networks can provide communication to our frontline workers such as police, fire, EMS, hospitals, and FEMA.\\r\\n<\\/p>\"},\"是否显示内容\":\"显示\",\"内容显示条数\":\"2\",\"所属页面\":\"Our Technology\",\"内容功能类型\":\"自定义\",\"内容启用的字段\":{\"更新前\":\"图片\",\"更新后\":\"链接,图片\"},\"排序\":\"79\"}', 8, 1, 1663233294),
  363. (86, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"8\",\"模块ID\":\"8\",\"模块标题\":\"The PeaRhino Introduction\",\"模块标识\":\"market\",\"模块描述\":{\"更新前\":\"<img layer-src=\\\"<p>\\r\\n\\tPeaSafe is extremely confident in bringing “PeaRhino” to serve Disaster Recovery.\\r\\n<\\/p>\\r\\n<p>\\r\\n\\tAn unforeseen natural disastrous event can change a community overnight. Critical moments to respond can quickly prevent a recovery to a halt and save lives. This is why PeaRhino for Disaster Recovery can support frontline workers to maintain their communication. In the event of a plane crash in a remote area, wildfire, or severe weather that can cut off power lines and cell towers, our transportable Cell sites\\/networks can provide communication to our frontline workers such as police, fire, EMS, hospitals, and FEMA.\\r\\n<\\/p>\\\" src=\\\"<p>\\r\\n\\tPeaSafe is extremely confident in bringing “PeaRhino” to serve Disaster Recovery.\\r\\n<\\/p>\\r\\n<p>\\r\\n\\tAn unforeseen natural disastrous event can change a community overnight. Critical moments to respond can quickly prevent a recovery to a halt and save lives. This is why PeaRhino for Disaster Recovery can support frontline workers to maintain their communication. In the event of a plane crash in a remote area, wildfire, or severe weather that can cut off power lines and cell towers, our transportable Cell sites\\/networks can provide communication to our frontline workers such as police, fire, EMS, hospitals, and FEMA.\\r\\n<\\/p>\\\" width=\\\"150\\\">\",\"更新后\":\"<img layer-src=\\\"<p>\\r\\n\\tPeaSafe is extremely confident in bringing “PeaRhino” to serve Disaster Recovery.\\r\\n<\\/p>\\r\\n<p>\\r\\n\\tAn unforeseen natural disastrous event can change a community overnight. Critical moments to respond can quickly prevent a recovery to a halt and save lives. This is why PeaRhino for Disaster Recovery can support frontline workers to maintain their communication. In the event of a plane crash in a remote area, wildfire, or severe weather that can cut off power lines and cell towers, our transportable Cell sites\\/networks can provide communication to our frontline workers such as police, fire, EMS, hospitals, and FEMA.\\r\\n<\\/p>\\r\\n<p>\\r\\n\\t<div class=\\\"img-with-aniamtion-wrap center custom-width-170px\\\" data-max-width=\\\"custom\\\" data-max-width-mobile=\\\"default\\\" data-shadow=\\\"none\\\" data-animation=\\\"fade-in\\\" style=\\\"box-sizing:border-box;margin:0px;padding:0px;border:0px;font-variant-numeric:inherit;font-variant-east-asian:inherit;font-stretch:inherit;font-size:16px;line-height:0;font-family:Poppins;vertical-align:baseline;text-align:center;color:#333333;white-space:normal;background-color:#FFFFFF;\\\">\\r\\n\\t\\t<div class=\\\"inner\\\" style=\\\"box-sizing:border-box;margin:0px;padding:0px;border:0px;font:inherit;vertical-align:baseline;height:153.262px;max-width:170px;display:inline-block;\\\">\\r\\n\\t\\t\\t<div class=\\\"hover-wrap\\\" style=\\\"box-sizing:border-box;margin:0px 0px 15px;padding:0px;border:0px;font:inherit;vertical-align:baseline;opacity:1;position:relative;overflow:visible;transition:all 0.65s cubic-bezier(0.05, 0.2, 0.1, 1) 0s !important;\\\">\\r\\n\\t\\t\\t\\t<div class=\\\"hover-wrap-inner\\\" style=\\\"box-sizing:border-box;margin:0px;padding:0px;border:0px;font:inherit;vertical-align:baseline;transition:transform 0.65s cubic-bezier(0.05, 0.2, 0.1, 1) 0s;\\\">\\r\\n\\t\\t\\t\\t\\t<img class=\\\"img-with-animation skip-lazy animated-in\\\" data-delay=\\\"0\\\" height=\\\"244\\\" width=\\\"300\\\" data-animation=\\\"fade-in\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/15\\/99872be59c3b6e7d89e9b32376657e72.png\\\" alt=\\\"\\\" style=\\\"box-sizing:border-box;margin:0px auto;padding:0px;font:inherit;vertical-align:baseline;max-width:100%;height:auto;display:block;opacity:1;position:relative;width:auto;box-shadow:none;transform:none;\\\" \\/>\\r\\n\\t\\t\\t\\t<\\/div>\\r\\n\\t\\t\\t<\\/div>\\r\\n\\t\\t<\\/div>\\r\\n\\t<\\/div>\\r\\n\\t<div class=\\\"wpb_text_column wpb_content_element wpb_animate_when_almost_visible wpb_fadeIn fadeIn text-rhino animated wpb_start_animation\\\" style=\\\"box-sizing:border-box;margin:0px;padding:0px;border:0px;font-variant-numeric:inherit;font-variant-east-asian:inherit;font-stretch:inherit;font-size:16px;line-height:inherit;font-family:Poppins;vertical-align:baseline;opacity:1;animation-duration:1s;animation-fill-mode:both;animation-name:fadeIn;color:#333333;white-space:normal;background-color:#FFFFFF;\\\">\\r\\n\\t\\t<div class=\\\"wpb_wrapper\\\" style=\\\"box-sizing:border-box;margin:0px;padding:0px;border:0px;font:inherit;vertical-align:baseline;\\\">\\r\\n\\t\\t\\t<p style=\\\"box-sizing:border-box;margin-top:0px;margin-bottom:0px;padding:0px;border:0px;font:inherit;vertical-align:baseline;-webkit-font-smoothing:antialiased;text-align:center;\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"box-sizing:border-box;margin:0px;padding:0px;border:0px;font-style:inherit;font-variant:inherit;font-weight:600;font-stretch:inherit;font-size:inherit;line-height:inherit;vertical-align:baseline;\\\"><span style=\\\"box-sizing:border-box;margin:0px 0px 0px 1rem;padding:0px;border:0px;font:inherit;vertical-align:baseline;color:#009D00;\\\">R<\\/span>apid <span style=\\\"box-sizing:border-box;margin:0px 0px 0px 1rem;padding:0px;border:0px;font:inherit;vertical-align:baseline;color:#009D00;\\\">H<\\/span>igh-speed <span style=\\\"box-sizing:border-box;margin:0px 0px 0px 1rem;padding:0px;border:0px;font:inherit;vertical-align:baseline;color:#009D00;\\\">I<\\/span>ntelligent <span style=\\\"box-sizing:border-box;margin:0px 0px 0px 1rem;padding:0px;border:0px;font:inherit;vertical-align:baseline;color:#009D00;\\\">N<\\/span>etwork <span style=\\\"box-sizing:border-box;margin:0px 0px 0px 1rem;padding:0px;border:0px;font:inherit;vertical-align:baseline;color:#009D00;\\\">O<\\/span>peration<\\/span>\\r\\n\\t\\t\\t<\\/p>\\r\\n\\t\\t<\\/div>\\r\\n\\t<\\/div>\\r\\n<\\/p>\\\" src=\\\"<p>\\r\\n\\tPeaSafe is extremely confident in bringing “PeaRhino” to serve Disaster Recovery.\\r\\n<\\/p>\\r\\n<p>\\r\\n\\tAn unforeseen natural disastrous event can change a community overnight. Critical moments to respond can quickly prevent a recovery to a halt and save lives. This is why PeaRhino for Disaster Recovery can support frontline workers to maintain their communication. In the event of a plane crash in a remote area, wildfire, or severe weather that can cut off power lines and cell towers, our transportable Cell sites\\/networks can provide communication to our frontline workers such as police, fire, EMS, hospitals, and FEMA.\\r\\n<\\/p>\\r\\n<p>\\r\\n\\t<div class=\\\"img-with-aniamtion-wrap center custom-width-170px\\\" data-max-width=\\\"custom\\\" data-max-width-mobile=\\\"default\\\" data-shadow=\\\"none\\\" data-animation=\\\"fade-in\\\" style=\\\"box-sizing:border-box;margin:0px;padding:0px;border:0px;font-variant-numeric:inherit;font-variant-east-asian:inherit;font-stretch:inherit;font-size:16px;line-height:0;font-family:Poppins;vertical-align:baseline;text-align:center;color:#333333;white-space:normal;background-color:#FFFFFF;\\\">\\r\\n\\t\\t<div class=\\\"inner\\\" style=\\\"box-sizing:border-box;margin:0px;padding:0px;border:0px;font:inherit;vertical-align:baseline;height:153.262px;max-width:170px;display:inline-block;\\\">\\r\\n\\t\\t\\t<div class=\\\"hover-wrap\\\" style=\\\"box-sizing:border-box;margin:0px 0px 15px;padding:0px;border:0px;font:inherit;vertical-align:baseline;opacity:1;position:relative;overflow:visible;transition:all 0.65s cubic-bezier(0.05, 0.2, 0.1, 1) 0s !important;\\\">\\r\\n\\t\\t\\t\\t<div class=\\\"hover-wrap-inner\\\" style=\\\"box-sizing:border-box;margin:0px;padding:0px;border:0px;font:inherit;vertical-align:baseline;transition:transform 0.65s cubic-bezier(0.05, 0.2, 0.1, 1) 0s;\\\">\\r\\n\\t\\t\\t\\t\\t<img class=\\\"img-with-animation skip-lazy animated-in\\\" data-delay=\\\"0\\\" height=\\\"244\\\" width=\\\"300\\\" data-animation=\\\"fade-in\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/15\\/99872be59c3b6e7d89e9b32376657e72.png\\\" alt=\\\"\\\" style=\\\"box-sizing:border-box;margin:0px auto;padding:0px;font:inherit;vertical-align:baseline;max-width:100%;height:auto;display:block;opacity:1;position:relative;width:auto;box-shadow:none;transform:none;\\\" \\/>\\r\\n\\t\\t\\t\\t<\\/div>\\r\\n\\t\\t\\t<\\/div>\\r\\n\\t\\t<\\/div>\\r\\n\\t<\\/div>\\r\\n\\t<div class=\\\"wpb_text_column wpb_content_element wpb_animate_when_almost_visible wpb_fadeIn fadeIn text-rhino animated wpb_start_animation\\\" style=\\\"box-sizing:border-box;margin:0px;padding:0px;border:0px;font-variant-numeric:inherit;font-variant-east-asian:inherit;font-stretch:inherit;font-size:16px;line-height:inherit;font-family:Poppins;vertical-align:baseline;opacity:1;animation-duration:1s;animation-fill-mode:both;animation-name:fadeIn;color:#333333;white-space:normal;background-color:#FFFFFF;\\\">\\r\\n\\t\\t<div class=\\\"wpb_wrapper\\\" style=\\\"box-sizing:border-box;margin:0px;padding:0px;border:0px;font:inherit;vertical-align:baseline;\\\">\\r\\n\\t\\t\\t<p style=\\\"box-sizing:border-box;margin-top:0px;margin-bottom:0px;padding:0px;border:0px;font:inherit;vertical-align:baseline;-webkit-font-smoothing:antialiased;text-align:center;\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"box-sizing:border-box;margin:0px;padding:0px;border:0px;font-style:inherit;font-variant:inherit;font-weight:600;font-stretch:inherit;font-size:inherit;line-height:inherit;vertical-align:baseline;\\\"><span style=\\\"box-sizing:border-box;margin:0px 0px 0px 1rem;padding:0px;border:0px;font:inherit;vertical-align:baseline;color:#009D00;\\\">R<\\/span>apid <span style=\\\"box-sizing:border-box;margin:0px 0px 0px 1rem;padding:0px;border:0px;font:inherit;vertical-align:baseline;color:#009D00;\\\">H<\\/span>igh-speed <span style=\\\"box-sizing:border-box;margin:0px 0px 0px 1rem;padding:0px;border:0px;font:inherit;vertical-align:baseline;color:#009D00;\\\">I<\\/span>ntelligent <span style=\\\"box-sizing:border-box;margin:0px 0px 0px 1rem;padding:0px;border:0px;font:inherit;vertical-align:baseline;color:#009D00;\\\">N<\\/span>etwork <span style=\\\"box-sizing:border-box;margin:0px 0px 0px 1rem;padding:0px;border:0px;font:inherit;vertical-align:baseline;color:#009D00;\\\">O<\\/span>peration<\\/span>\\r\\n\\t\\t\\t<\\/p>\\r\\n\\t\\t<\\/div>\\r\\n\\t<\\/div>\\r\\n<\\/p>\\\" width=\\\"150\\\">\"},\"是否显示内容\":\"显示\",\"内容显示条数\":\"2\",\"所属页面\":\"Our Technology\",\"内容功能类型\":\"自定义\",\"内容启用的字段\":{\"更新前\":\"图片\",\"更新后\":\"链接,图片\"},\"排序\":\"79\"}', 8, 1, 1663233365),
  364. (87, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"8\",\"模块ID\":\"8\",\"模块标题\":\"The PeaRhino Introduction\",\"模块标识\":\"market\",\"模块描述\":{\"更新前\":\"<img layer-src=\\\"<p>\\r\\n\\tPeaSafe is extremely confident in bringing “PeaRhino” to serve Disaster Recovery.\\r\\n<\\/p>\\r\\n<p>\\r\\n\\tAn unforeseen natural disastrous event can change a community overnight. Critical moments to respond can quickly prevent a recovery to a halt and save lives. This is why PeaRhino for Disaster Recovery can support frontline workers to maintain their communication. In the event of a plane crash in a remote area, wildfire, or severe weather that can cut off power lines and cell towers, our transportable Cell sites\\/networks can provide communication to our frontline workers such as police, fire, EMS, hospitals, and FEMA.\\r\\n<\\/p>\\r\\n<p>\\r\\n\\t<div class=\\\"img-with-aniamtion-wrap center custom-width-170px\\\" data-max-width=\\\"custom\\\" data-max-width-mobile=\\\"default\\\" data-shadow=\\\"none\\\" data-animation=\\\"fade-in\\\" style=\\\"box-sizing:border-box;margin:0px;padding:0px;border:0px;font-variant-numeric:inherit;font-variant-east-asian:inherit;font-stretch:inherit;font-size:16px;line-height:0;font-family:Poppins;vertical-align:baseline;text-align:center;color:#333333;white-space:normal;background-color:#FFFFFF;\\\">\\r\\n\\t\\t<div class=\\\"inner\\\" style=\\\"box-sizing:border-box;margin:0px;padding:0px;border:0px;font:inherit;vertical-align:baseline;height:153.262px;max-width:170px;display:inline-block;\\\">\\r\\n\\t\\t\\t<div class=\\\"hover-wrap\\\" style=\\\"box-sizing:border-box;margin:0px 0px 15px;padding:0px;border:0px;font:inherit;vertical-align:baseline;opacity:1;position:relative;overflow:visible;transition:all 0.65s cubic-bezier(0.05, 0.2, 0.1, 1) 0s !important;\\\">\\r\\n\\t\\t\\t\\t<div class=\\\"hover-wrap-inner\\\" style=\\\"box-sizing:border-box;margin:0px;padding:0px;border:0px;font:inherit;vertical-align:baseline;transition:transform 0.65s cubic-bezier(0.05, 0.2, 0.1, 1) 0s;\\\">\\r\\n\\t\\t\\t\\t\\t<img class=\\\"img-with-animation skip-lazy animated-in\\\" data-delay=\\\"0\\\" height=\\\"244\\\" width=\\\"300\\\" data-animation=\\\"fade-in\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/15\\/99872be59c3b6e7d89e9b32376657e72.png\\\" alt=\\\"\\\" style=\\\"box-sizing:border-box;margin:0px aut\\\" src=\\\"<p>\\r\\n\\tPeaSafe is extremely confident in bringing “PeaRhino” to serve Disaster Recovery.\\r\\n<\\/p>\\r\\n<p>\\r\\n\\tAn unforeseen natural disastrous event can change a community overnight. Critical moments to respond can quickly prevent a recovery to a halt and save lives. This is why PeaRhino for Disaster Recovery can support frontline workers to maintain their communication. In the event of a plane crash in a remote area, wildfire, or severe weather that can cut off power lines and cell towers, our transportable Cell sites\\/networks can provide communication to our frontline workers such as police, fire, EMS, hospitals, and FEMA.\\r\\n<\\/p>\\r\\n<p>\\r\\n\\t<div class=\\\"img-with-aniamtion-wrap center custom-width-170px\\\" data-max-width=\\\"custom\\\" data-max-width-mobile=\\\"default\\\" data-shadow=\\\"none\\\" data-animation=\\\"fade-in\\\" style=\\\"box-sizing:border-box;margin:0px;padding:0px;border:0px;font-variant-numeric:inherit;font-variant-east-asian:inherit;font-stretch:inherit;font-size:16px;line-height:0;font-family:Poppins;vertical-align:baseline;text-align:center;color:#333333;white-space:normal;background-color:#FFFFFF;\\\">\\r\\n\\t\\t<div class=\\\"inner\\\" style=\\\"box-sizing:border-box;margin:0px;padding:0px;border:0px;font:inherit;vertical-align:baseline;height:153.262px;max-width:170px;display:inline-block;\\\">\\r\\n\\t\\t\\t<div class=\\\"hover-wrap\\\" style=\\\"box-sizing:border-box;margin:0px 0px 15px;padding:0px;border:0px;font:inherit;vertical-align:baseline;opacity:1;position:relative;overflow:visible;transition:all 0.65s cubic-bezier(0.05, 0.2, 0.1, 1) 0s !important;\\\">\\r\\n\\t\\t\\t\\t<div class=\\\"hover-wrap-inner\\\" style=\\\"box-sizing:border-box;margin:0px;padding:0px;border:0px;font:inherit;vertical-align:baseline;transition:transform 0.65s cubic-bezier(0.05, 0.2, 0.1, 1) 0s;\\\">\\r\\n\\t\\t\\t\\t\\t<img class=\\\"img-with-animation skip-lazy animated-in\\\" data-delay=\\\"0\\\" height=\\\"244\\\" width=\\\"300\\\" data-animation=\\\"fade-in\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/15\\/99872be59c3b6e7d89e9b32376657e72.png\\\" alt=\\\"\\\" style=\\\"box-sizing:border-box;margin:0px aut\\\" width=\\\"150\\\">\",\"更新后\":\"<img layer-src=\\\"<p>\\r\\n\\tPeaSafe is extremely confident in bringing “PeaRhino” to serve Disaster Recovery.\\r\\n<\\/p>\\r\\n<p>\\r\\n\\tAn unforeseen natural disastrous event can change a community overnight. Critical moments to respond can quickly prevent a recovery to a halt and save lives. This is why PeaRhino for Disaster Recovery can support frontline workers to maintain their communication. In the event of a plane crash in a remote area, wildfire, or severe weather that can cut off power lines and cell towers, our transportable Cell sites\\/networks can provide communication to our frontline workers such as police, fire, EMS, hospitals, and FEMA.\\r\\n<\\/p>\\r\\n<p>\\r\\n\\t<div class=\\\"img-with-aniamtion-wrap center custom-width-170px\\\" data-max-width=\\\"custom\\\" data-max-width-mobile=\\\"default\\\" data-shadow=\\\"none\\\" data-animation=\\\"fade-in\\\" style=\\\"box-sizing:border-box;margin:0px;padding:0px;border:0px;font-variant-numeric:inherit;font-variant-east-asian:inherit;font-stretch:inherit;font-size:16px;line-height:0;font-family:Poppins;vertical-align:baseline;text-align:center;color:#333333;white-space:normal;background-color:#FFFFFF;\\\">\\r\\n\\t\\t<div class=\\\"inner\\\" style=\\\"box-sizing:border-box;margin:0px;padding:0px;border:0px;font:inherit;vertical-align:baseline;height:153.262px;max-width:170px;display:inline-block;\\\">\\r\\n\\t\\t\\t<div class=\\\"hover-wrap\\\" style=\\\"box-sizing:border-box;margin:0px 0px 15px;padding:0px;border:0px;font:inherit;vertical-align:baseline;opacity:1;position:relative;overflow:visible;transition:all 0.65s cubic-bezier(0.05, 0.2, 0.1, 1) 0s !important;\\\">\\r\\n\\t\\t\\t\\t<div class=\\\"hover-wrap-inner\\\" style=\\\"box-sizing:border-box;margin:0px;padding:0px;border:0px;font:inherit;vertical-align:baseline;transition:transform 0.65s cubic-bezier(0.05, 0.2, 0.1, 1) 0s;\\\">\\r\\n\\t\\t\\t\\t\\t<img class=\\\"img-with-animation skip-lazy animated-in\\\" data-delay=\\\"0\\\" height=\\\"244\\\" width=\\\"300\\\" data-animation=\\\"fade-in\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/15\\/99872be59c3b6e7d89e9b32376657e72.png\\\" alt=\\\"\\\" style=\\\"box-sizing:border-box;margin:0px auto;padding:0px;font:inherit;vertical-align:baseline;max-width:100%;height:auto;display:block;opacity:1;position:relative;width:auto;box-shadow:none;transform:none;\\\" \\/>\\r\\n\\t\\t\\t\\t<\\/div>\\r\\n\\t\\t\\t<\\/div>\\r\\n\\t\\t<\\/div>\\r\\n\\t<\\/div>\\r\\n\\t<div class=\\\"wpb_text_column wpb_content_element wpb_animate_when_almost_visible wpb_fadeIn fadeIn text-rhino animated wpb_start_animation\\\" style=\\\"box-sizing:border-box;margin:0px;padding:0px;border:0px;font-variant-numeric:inherit;font-variant-east-asian:inherit;font-stretch:inherit;font-size:16px;line-height:inherit;font-family:Poppins;vertical-align:baseline;opacity:1;animation-duration:1s;animation-fill-mode:both;animation-name:fadeIn;color:#333333;white-space:normal;background-color:#FFFFFF;\\\">\\r\\n\\t\\t<div class=\\\"wpb_wrapper\\\" style=\\\"box-sizing:border-box;margin:0px;padding:0px;border:0px;font:inherit;vertical-align:baseline;\\\">\\r\\n\\t\\t\\t<p style=\\\"box-sizing:border-box;margin-top:0px;margin-bottom:0px;padding:0px;border:0px;font:inherit;vertical-align:baseline;-webkit-font-smoothing:antialiased;text-align:center;\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"box-sizing:border-box;margin:0px;padding:0px;border:0px;font-style:inherit;font-variant:inherit;font-weight:600;font-stretch:inherit;font-size:inherit;line-height:inherit;vertical-align:baseline;\\\"><span style=\\\"box-sizing:border-box;margin:0px 0px 0px 1rem;padding:0px;border:0px;font:inherit;vertical-align:baseline;color:#009D00;\\\">R<\\/span>apid <span style=\\\"box-sizing:border-box;margin:0px 0px 0px 1rem;padding:0px;border:0px;font:inherit;vertical-align:baseline;color:#009D00;\\\">H<\\/span>igh-speed <span style=\\\"box-sizing:border-box;margin:0px 0px 0px 1rem;padding:0px;border:0px;font:inherit;vertical-align:baseline;color:#009D00;\\\">I<\\/span>ntelligent <span style=\\\"box-sizing:border-box;margin:0px 0px 0px 1rem;padding:0px;border:0px;font:inherit;vertical-align:baseline;color:#009D00;\\\">N<\\/span>etwork <span style=\\\"box-sizing:border-box;margin:0px 0px 0px 1rem;padding:0px;border:0px;font:inherit;vertical-align:baseline;color:#009D00;\\\">O<\\/span>peration<\\/span>\\r\\n\\t\\t\\t<\\/p>\\r\\n\\t\\t<\\/div>\\r\\n\\t<\\/div>\\r\\n<\\/p>\\\" src=\\\"<p>\\r\\n\\tPeaSafe is extremely confident in bringing “PeaRhino” to serve Disaster Recovery.\\r\\n<\\/p>\\r\\n<p>\\r\\n\\tAn unforeseen natural disastrous event can change a community overnight. Critical moments to respond can quickly prevent a recovery to a halt and save lives. This is why PeaRhino for Disaster Recovery can support frontline workers to maintain their communication. In the event of a plane crash in a remote area, wildfire, or severe weather that can cut off power lines and cell towers, our transportable Cell sites\\/networks can provide communication to our frontline workers such as police, fire, EMS, hospitals, and FEMA.\\r\\n<\\/p>\\r\\n<p>\\r\\n\\t<div class=\\\"img-with-aniamtion-wrap center custom-width-170px\\\" data-max-width=\\\"custom\\\" data-max-width-mobile=\\\"default\\\" data-shadow=\\\"none\\\" data-animation=\\\"fade-in\\\" style=\\\"box-sizing:border-box;margin:0px;padding:0px;border:0px;font-variant-numeric:inherit;font-variant-east-asian:inherit;font-stretch:inherit;font-size:16px;line-height:0;font-family:Poppins;vertical-align:baseline;text-align:center;color:#333333;white-space:normal;background-color:#FFFFFF;\\\">\\r\\n\\t\\t<div class=\\\"inner\\\" style=\\\"box-sizing:border-box;margin:0px;padding:0px;border:0px;font:inherit;vertical-align:baseline;height:153.262px;max-width:170px;display:inline-block;\\\">\\r\\n\\t\\t\\t<div class=\\\"hover-wrap\\\" style=\\\"box-sizing:border-box;margin:0px 0px 15px;padding:0px;border:0px;font:inherit;vertical-align:baseline;opacity:1;position:relative;overflow:visible;transition:all 0.65s cubic-bezier(0.05, 0.2, 0.1, 1) 0s !important;\\\">\\r\\n\\t\\t\\t\\t<div class=\\\"hover-wrap-inner\\\" style=\\\"box-sizing:border-box;margin:0px;padding:0px;border:0px;font:inherit;vertical-align:baseline;transition:transform 0.65s cubic-bezier(0.05, 0.2, 0.1, 1) 0s;\\\">\\r\\n\\t\\t\\t\\t\\t<img class=\\\"img-with-animation skip-lazy animated-in\\\" data-delay=\\\"0\\\" height=\\\"244\\\" width=\\\"300\\\" data-animation=\\\"fade-in\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/15\\/99872be59c3b6e7d89e9b32376657e72.png\\\" alt=\\\"\\\" style=\\\"box-sizing:border-box;margin:0px auto;padding:0px;font:inherit;vertical-align:baseline;max-width:100%;height:auto;display:block;opacity:1;position:relative;width:auto;box-shadow:none;transform:none;\\\" \\/>\\r\\n\\t\\t\\t\\t<\\/div>\\r\\n\\t\\t\\t<\\/div>\\r\\n\\t\\t<\\/div>\\r\\n\\t<\\/div>\\r\\n\\t<div class=\\\"wpb_text_column wpb_content_element wpb_animate_when_almost_visible wpb_fadeIn fadeIn text-rhino animated wpb_start_animation\\\" style=\\\"box-sizing:border-box;margin:0px;padding:0px;border:0px;font-variant-numeric:inherit;font-variant-east-asian:inherit;font-stretch:inherit;font-size:16px;line-height:inherit;font-family:Poppins;vertical-align:baseline;opacity:1;animation-duration:1s;animation-fill-mode:both;animation-name:fadeIn;color:#333333;white-space:normal;background-color:#FFFFFF;\\\">\\r\\n\\t\\t<div class=\\\"wpb_wrapper\\\" style=\\\"box-sizing:border-box;margin:0px;padding:0px;border:0px;font:inherit;vertical-align:baseline;\\\">\\r\\n\\t\\t\\t<p style=\\\"box-sizing:border-box;margin-top:0px;margin-bottom:0px;padding:0px;border:0px;font:inherit;vertical-align:baseline;-webkit-font-smoothing:antialiased;text-align:center;\\\">\\r\\n\\t\\t\\t\\t<span style=\\\"box-sizing:border-box;margin:0px;padding:0px;border:0px;font-style:inherit;font-variant:inherit;font-weight:600;font-stretch:inherit;font-size:inherit;line-height:inherit;vertical-align:baseline;\\\"><span style=\\\"box-sizing:border-box;margin:0px 0px 0px 1rem;padding:0px;border:0px;font:inherit;vertical-align:baseline;color:#009D00;\\\">R<\\/span>apid <span style=\\\"box-sizing:border-box;margin:0px 0px 0px 1rem;padding:0px;border:0px;font:inherit;vertical-align:baseline;color:#009D00;\\\">H<\\/span>igh-speed <span style=\\\"box-sizing:border-box;margin:0px 0px 0px 1rem;padding:0px;border:0px;font:inherit;vertical-align:baseline;color:#009D00;\\\">I<\\/span>ntelligent <span style=\\\"box-sizing:border-box;margin:0px 0px 0px 1rem;padding:0px;border:0px;font:inherit;vertical-align:baseline;color:#009D00;\\\">N<\\/span>etwork <span style=\\\"box-sizing:border-box;margin:0px 0px 0px 1rem;padding:0px;border:0px;font:inherit;vertical-align:baseline;color:#009D00;\\\">O<\\/span>peration<\\/span>\\r\\n\\t\\t\\t<\\/p>\\r\\n\\t\\t<\\/div>\\r\\n\\t<\\/div>\\r\\n<\\/p>\\\" width=\\\"150\\\">\"},\"是否显示内容\":\"显示\",\"内容显示条数\":\"2\",\"所属页面\":\"Our Technology\",\"内容功能类型\":\"自定义\",\"内容启用的字段\":{\"更新前\":\"图片\",\"更新后\":\"链接,图片\"},\"排序\":\"79\"}', 8, 1, 1663233435),
  365. (88, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"8\",\"模块ID\":\"8\",\"模块标题\":\"The PeaRhino Introduction\",\"模块标识\":\"market\",\"模块描述\":{\"更新前\":\"<p>\\r\\n\\tPeaSafe is extremely confident in bringing “PeaRhino” to serve Disaster Recovery.\\r\\n<\\/p>\\r\\n<p>\\r\\n\\tAn unforeseen natural disastrous event can change a community overnight. Critical moments to respond can quickly prevent a recovery to a halt and save lives. This is why PeaRhino for Disaster Recovery can support frontline workers to maintain their communication. In the event of a plane crash in a remote area, wildfire, or severe weather that can cut off power lines and cell towers, our transportable Cell sites\\/networks can provide communication to our frontline workers such as police, fire, EMS, hospitals, and FEMA.\\r\\n<\\/p>\\r\\n<p>\\r\\n\\t<div class=\\\"img-with-aniamtion-wrap center custom-width-170px\\\" data-max-width=\\\"custom\\\" data-max-width-mobile=\\\"default\\\" data-shadow=\\\"none\\\" data-animation=\\\"fade-in\\\" style=\\\"box-sizing:border-box;margin:0px;padding:0px;border:0px;font-variant-numeric:inherit;font-variant-east-asian:inherit;font-stretch:inherit;font-size:16px;line-height:0;font-family:Poppins;vertical-align:baseline;text-align:center;color:#333333;white-space:normal;background-color:#FFFFFF;\\\">\\r\\n\\t\\t<div class=\\\"inner\\\" style=\\\"box-sizing:border-box;margin:0px;padding:0px;border:0px;font:inherit;vertical-align:baseline;height:153.262px;max-width:170px;display:inline-block;\\\">\\r\\n\\t\\t\\t<div class=\\\"hover-wrap\\\" style=\\\"box-sizing:border-box;margin:0px 0px 15px;padding:0px;border:0px;font:inherit;vertical-align:baseline;opacity:1;position:relative;overflow:visible;transition:all 0.65s cubic-bezier(0.05, 0.2, 0.1, 1) 0s !important;\\\">\\r\\n\\t\\t\\t\\t<div class=\\\"hover-wrap-inner\\\" style=\\\"box-sizing:border-box;margin:0px;padding:0px;border:0px;font:inherit;vertical-align:baseline;transition:transform 0.65s cubic-bezier(0.05, 0.2, 0.1, 1) 0s;\\\">\\r\\n\\t\\t\\t\\t\\t<img class=\\\"img-with-animation skip-lazy animated-in\\\" data-delay=\\\"0\\\" height=\\\"244\\\" width=\\\"300\\\" data-animation=\\\"fade-in\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/15\\/99872be59c3b6e7d89e9b32376657e72.png\\\" alt=\\\"\\\" style=\\\"box-sizing:border-box;margin:0px aut\",\"更新后\":\"<p>\\r\\n\\tPeaSafe is extremely confident in bringing “PeaRhino” to serve Disaster Recovery.\\r\\n<\\/p>\\r\\n<p>\\r\\n\\tAn unforeseen natural disastrous event can change a community overnight. Critical moments to respond can quickly prevent a recovery to a halt and save lives. This is why PeaRhino for Disaster Recovery can support frontline workers to maintain their communication. In the event of a plane crash in a remote area, wildfire, or severe weather that can cut off power lines and cell towers, our transportable Cell sites\\/networks can provide communication to our frontline workers such as police, fire, EMS, hospitals, and FEMA.\\r\\n<\\/p>\\r\\n<p>\\r\\n\\t<br \\/>\\r\\n<\\/p>\"},\"是否显示内容\":\"显示\",\"内容显示条数\":\"2\",\"所属页面\":\"Our Technology\",\"内容功能类型\":\"自定义\",\"内容启用的字段\":{\"更新前\":\"图片\",\"更新后\":\"链接,图片\"},\"排序\":\"79\"}', 8, 1, 1663233499),
  366. (89, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"8\",\"模块ID\":\"8\",\"模块标题\":\"The PeaRhino Introduction\",\"模块标识\":\"market\",\"模块描述\":{\"更新前\":\"<img layer-src=\\\"<p>\\r\\n\\tPeaSafe is extremely confident in bringing “PeaRhino” to serve Disaster Recovery.\\r\\n<\\/p>\\r\\n<p>\\r\\n\\tAn unforeseen natural disastrous event can change a community overnight. Critical moments to respond can quickly prevent a recovery to a halt and save lives. This is why PeaRhino for Disaster Recovery can support frontline workers to maintain their communication. In the event of a plane crash in a remote area, wildfire, or severe weather that can cut off power lines and cell towers, our transportable Cell sites\\/networks can provide communication to our frontline workers such as police, fire, EMS, hospitals, and FEMA.\\r\\n<\\/p>\\r\\n<p>\\r\\n\\t<br \\/>\\r\\n<\\/p>\\\" src=\\\"<p>\\r\\n\\tPeaSafe is extremely confident in bringing “PeaRhino” to serve Disaster Recovery.\\r\\n<\\/p>\\r\\n<p>\\r\\n\\tAn unforeseen natural disastrous event can change a community overnight. Critical moments to respond can quickly prevent a recovery to a halt and save lives. This is why PeaRhino for Disaster Recovery can support frontline workers to maintain their communication. In the event of a plane crash in a remote area, wildfire, or severe weather that can cut off power lines and cell towers, our transportable Cell sites\\/networks can provide communication to our frontline workers such as police, fire, EMS, hospitals, and FEMA.\\r\\n<\\/p>\\r\\n<p>\\r\\n\\t<br \\/>\\r\\n<\\/p>\\\" width=\\\"150\\\">\",\"更新后\":\"<img layer-src=\\\"<p>\\r\\n\\tPeaSafe is extremely confident in bringing “PeaRhino” to serve Disaster Recovery.\\r\\n<\\/p>\\r\\n<p>\\r\\n\\tAn unforeseen natural disastrous event can change a community overnight. Critical moments to respond can quickly prevent a recovery to a halt and save lives. This is why PeaRhino for Disaster Recovery can support frontline workers to maintain their communication. In the event of a plane crash in a remote area, wildfire, or severe weather that can cut off power lines and cell towers, our transportable Cell sites\\/networks can provide communication to our frontline workers such as police, fire, EMS, hospitals, and FEMA.\\r\\n<\\/p>\\r\\n<p>\\r\\n\\t<img src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/15\\/296a0722807ad976a7f40bf5313ede6a.jpg\\\" width=\\\"779\\\" height=\\\"306\\\" alt=\\\"\\\" \\/>\\r\\n<\\/p>\\\" src=\\\"<p>\\r\\n\\tPeaSafe is extremely confident in bringing “PeaRhino” to serve Disaster Recovery.\\r\\n<\\/p>\\r\\n<p>\\r\\n\\tAn unforeseen natural disastrous event can change a community overnight. Critical moments to respond can quickly prevent a recovery to a halt and save lives. This is why PeaRhino for Disaster Recovery can support frontline workers to maintain their communication. In the event of a plane crash in a remote area, wildfire, or severe weather that can cut off power lines and cell towers, our transportable Cell sites\\/networks can provide communication to our frontline workers such as police, fire, EMS, hospitals, and FEMA.\\r\\n<\\/p>\\r\\n<p>\\r\\n\\t<img src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/15\\/296a0722807ad976a7f40bf5313ede6a.jpg\\\" width=\\\"779\\\" height=\\\"306\\\" alt=\\\"\\\" \\/>\\r\\n<\\/p>\\\" width=\\\"150\\\">\"},\"是否显示内容\":\"显示\",\"内容显示条数\":\"2\",\"所属页面\":\"Our Technology\",\"内容功能类型\":\"自定义\",\"内容启用的字段\":{\"更新前\":\"图片\",\"更新后\":\"链接,图片\"},\"排序\":\"79\"}', 8, 1, 1663233915),
  367. (90, 'page', 'module', '1,14,15', '页面管理.模块列表', 1, 1, '{\"ID\":\"9\",\"模块标题\":\"PeaRhino\",\"模块标识\":\"service_list\",\"是否显示内容\":\"显示\",\"内容显示条数\":\"10\",\"所属页面\":\"Our Technology\",\"排序\":\"1\"}', 9, 1, 1663235167),
  368. (91, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"9\",\"模块ID\":\"9\",\"模块标题\":\"PeaRhino\",\"模块标识\":\"service_list\",\"是否显示内容\":\"显示\",\"内容显示条数\":{\"更新前\":\"10\",\"更新后\":\"4\"},\"所属页面\":\"Our Technology\",\"内容功能类型\":\"自定义\",\"内容启用的字段\":\"链接,图片\",\"排序\":\"78\"}', 9, 1, 1663235222),
  369. (92, 'page', 'data', '1,14,15', '页面管理.内容管理', 1, 1, '{\"ID\":\"14\",\"所属模块\":\"PeaRhino\",\"功能类型\":\"自定义\",\"标题\":\"Rapid\",\"图片\":\"1\",\"内容\":\"PeaRhino is pre-built and set up to be commissioned immediately, it is a rapid solution to any frontline team.\",\"排序\":\"1\"}', 14, 1, 1663235416),
  370. (93, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"9\",\"模块ID\":\"9\",\"模块标题\":\"PeaRhino\",\"模块标识\":\"service_list\",\"是否显示内容\":\"显示\",\"内容显示条数\":\"4\",\"所属页面\":\"Our Technology\",\"内容功能类型\":\"自定义\",\"内容启用的字段\":{\"更新前\":\"4,2,1\",\"更新后\":\"链接\"},\"排序\":\"78\"}', 9, 1, 1663235425),
  371. (94, 'page', 'data', '1,14,15', '页面管理.内容管理', 1, 1, '{\"ID\":\"15\",\"所属模块\":\"PeaRhino\",\"功能类型\":\"自定义\",\"标题\":\"Hi-speed\",\"内容\":\"PeaRhino is a Self-Contained Site product, offers Hi-speed telecommunication up to 5G and beyond.\",\"排序\":\"9\"}', 15, 1, 1663235443),
  372. (95, 'page', 'data', '1,14,15', '页面管理.内容管理', 1, 1, '{\"ID\":\"16\",\"所属模块\":\"PeaRhino\",\"功能类型\":\"自定义\",\"标题\":\"Intelligent\",\"内容\":\"PeaRhino is AI (artificial intelligence) that features an independent service, private network, satellite, and data of 3G, 4G, 4G LTE, 5G, and beyond. PeaRhino can be integrated to be any network operation.\",\"排序\":\"8\"}', 16, 1, 1663235455),
  373. (96, 'page', 'data', '1,14,15', '页面管理.内容管理', 1, 1, '{\"ID\":\"17\",\"所属模块\":\"PeaRhino\",\"功能类型\":\"自定义\",\"标题\":\"Network\",\"内容\":\"PeaRhino performs faster, smoother, and reliable networks. PeaRhino is suitable worldwide due to its cost-effectiveness, compatibility, security, versatility, and transportability of a telecommunication network.\\r\\n\\r\\n\",\"排序\":\"6\"}', 17, 1, 1663235466),
  374. (97, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"8\",\"模块ID\":\"8\",\"模块标题\":{\"更新前\":\"The PeaRhino Introduction\",\"更新后\":\"PeaSafe \"},\"模块标识\":\"market\",\"模块描述\":{\"更新前\":\"<img layer-src=\\\"<p>\\r\\n\\tPeaSafe is extremely confident in bringing “PeaRhino” to serve Disaster Recovery.\\r\\n<\\/p>\\r\\n<p>\\r\\n\\tAn unforeseen natural disastrous event can change a community overnight. Critical moments to respond can quickly prevent a recovery to a halt and save lives. This is why PeaRhino for Disaster Recovery can support frontline workers to maintain their communication. In the event of a plane crash in a remote area, wildfire, or severe weather that can cut off power lines and cell towers, our transportable Cell sites\\/networks can provide communication to our frontline workers such as police, fire, EMS, hospitals, and FEMA.\\r\\n<\\/p>\\r\\n<p>\\r\\n\\t<img src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/15\\/296a0722807ad976a7f40bf5313ede6a.jpg\\\" width=\\\"779\\\" height=\\\"306\\\" alt=\\\"\\\" \\/>\\r\\n<\\/p>\\\" src=\\\"<p>\\r\\n\\tPeaSafe is extremely confident in bringing “PeaRhino” to serve Disaster Recovery.\\r\\n<\\/p>\\r\\n<p>\\r\\n\\tAn unforeseen natural disastrous event can change a community overnight. Critical moments to respond can quickly prevent a recovery to a halt and save lives. This is why PeaRhino for Disaster Recovery can support frontline workers to maintain their communication. In the event of a plane crash in a remote area, wildfire, or severe weather that can cut off power lines and cell towers, our transportable Cell sites\\/networks can provide communication to our frontline workers such as police, fire, EMS, hospitals, and FEMA.\\r\\n<\\/p>\\r\\n<p>\\r\\n\\t<img src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/15\\/296a0722807ad976a7f40bf5313ede6a.jpg\\\" width=\\\"779\\\" height=\\\"306\\\" alt=\\\"\\\" \\/>\\r\\n<\\/p>\\\" width=\\\"150\\\">\",\"更新后\":\"<img layer-src=\\\"<p>\\r\\n\\tPeaSafe is extremely confident in bringing “PeaRhino” to serve Disaster Recovery.\\r\\n<\\/p>\\r\\n<p>\\r\\n\\tAn unforeseen natural disastrous event can change a community overnight. Critical moments to respond can quickly prevent a recovery to a halt and save lives. This is why PeaRhino for Disaster Recovery can support frontline workers to maintain their communication. In the event of a plane crash in a remote area, wildfire, or severe weather that can cut off power lines and cell towers, our transportable Cell sites\\/networks can provide communication to our frontline workers such as police, fire, EMS, hospitals, and FEMA.\\r\\n<\\/p>\\r\\n<p>\\r\\n\\t<img src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/15\\/296a0722807ad976a7f40bf5313ede6a.jpg\\\" width=\\\"779\\\" height=\\\"306\\\" alt=\\\"\\\" \\/> \\r\\n<\\/p>\\\" src=\\\"<p>\\r\\n\\tPeaSafe is extremely confident in bringing “PeaRhino” to serve Disaster Recovery.\\r\\n<\\/p>\\r\\n<p>\\r\\n\\tAn unforeseen natural disastrous event can change a community overnight. Critical moments to respond can quickly prevent a recovery to a halt and save lives. This is why PeaRhino for Disaster Recovery can support frontline workers to maintain their communication. In the event of a plane crash in a remote area, wildfire, or severe weather that can cut off power lines and cell towers, our transportable Cell sites\\/networks can provide communication to our frontline workers such as police, fire, EMS, hospitals, and FEMA.\\r\\n<\\/p>\\r\\n<p>\\r\\n\\t<img src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/15\\/296a0722807ad976a7f40bf5313ede6a.jpg\\\" width=\\\"779\\\" height=\\\"306\\\" alt=\\\"\\\" \\/> \\r\\n<\\/p>\\\" width=\\\"150\\\">\"},\"是否显示内容\":\"显示\",\"内容显示条数\":\"2\",\"所属页面\":\"Our Technology\",\"内容功能类型\":\"自定义\",\"内容启用的字段\":{\"更新前\":\"图片\",\"更新后\":\"链接,图片\"},\"排序\":\"79\"}', 8, 1, 1663235771),
  375. (98, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"9\",\"模块ID\":\"9\",\"模块标题\":{\"更新前\":\"PeaRhino\",\"更新后\":\" The PeaRhino Introduction\"},\"模块标识\":\"service_list\",\"是否显示内容\":\"显示\",\"内容显示条数\":\"4\",\"所属页面\":\"Our Technology\",\"内容功能类型\":\"自定义\",\"内容启用的字段\":\"链接\",\"排序\":\"78\"}', 9, 1, 1663235828),
  376. (99, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"8\",\"模块ID\":\"8\",\"模块标题\":\"PeaSafe \",\"模块标识\":\"market\",\"模块描述\":{\"更新前\":\"<p>\\r\\n\\tPeaSafe is extremely confident in bringing “PeaRhino” to serve Disaster Recovery.\\r\\n<\\/p>\\r\\n<p>\\r\\n\\tAn unforeseen natural disastrous event can change a community overnight. Critical moments to respond can quickly prevent a recovery to a halt and save lives. This is why PeaRhino for Disaster Recovery can support frontline workers to maintain their communication. In the event of a plane crash in a remote area, wildfire, or severe weather that can cut off power lines and cell towers, our transportable Cell sites\\/networks can provide communication to our frontline workers such as police, fire, EMS, hospitals, and FEMA.\\r\\n<\\/p>\\r\\n<p>\\r\\n\\t<img src=\\\"http://192.168.33.10/peasafe/data/upload/1\\/2022\\/09\\/15\\/296a0722807ad976a7f40bf5313ede6a.jpg\\\" width=\\\"779\\\" height=\\\"306\\\" alt=\\\"\\\" \\/> \\r\\n<\\/p>\",\"更新后\":\"<p>\\r\\n\\tPeaSafe is extremely confident in bringing “PeaRhino” to serve Disaster Recovery.\\r\\n<\\/p>\\r\\n<p>\\r\\n\\tAn unforeseen natural disastrous event can change a community overnight. Critical moments to respond can quickly prevent a recovery to a halt and save lives. This is why PeaRhino for Disaster Recovery can support frontline workers to maintain their communication. In the event of a plane crash in a remote area, wildfire, or severe weather that can cut off power lines and cell towers, our transportable Cell sites\\/networks can provide communication to our frontline workers such as police, fire, EMS, hospitals, and FEMA.\\r\\n<\\/p>\"},\"是否显示内容\":\"显示\",\"内容显示条数\":\"2\",\"所属页面\":\"Our Technology\",\"内容功能类型\":\"自定义\",\"内容启用的字段\":{\"更新前\":\"图片\",\"更新后\":\"链接,图片\"},\"排序\":\"79\"}', 8, 1, 1663296883),
  377. (100, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"9\",\"模块ID\":\"9\",\"模块标题\":\" The PeaRhino Introduction\",\"模块标识\":\"service_list\",\"模块描述\":{\"更新前\":\"\",\"更新后\":\"<img layer-src=\\\"<img src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/15\\/296a0722807ad976a7f40bf5313ede6a.jpg\\\" width=\\\"779\\\" height=\\\"306\\\" alt=\\\"\\\" \\/> \\\" src=\\\"<img src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/15\\/296a0722807ad976a7f40bf5313ede6a.jpg\\\" width=\\\"779\\\" height=\\\"306\\\" alt=\\\"\\\" \\/> \\\" width=\\\"150\\\">\"},\"是否显示内容\":\"显示\",\"内容显示条数\":\"4\",\"所属页面\":\"Our Technology\",\"内容功能类型\":\"自定义\",\"内容启用的字段\":\"链接\",\"排序\":\"78\"}', 9, 1, 1663296888),
  378. (101, 'page', 'data', '1,14,15', '页面管理.内容管理', 1, 1, '{\"ID\":\"18\",\"所属模块\":\" The PeaRhino Introduction\",\"功能类型\":\"自定义\",\"标题\":\"Operation\",\"内容\":\"The PeaRhino System operation is attractive because of its capabilities:\\r\\nTransportable\\r\\nVersatility\\r\\nContingency Application\",\"排序\":\"1\"}', 18, 1, 1663297035),
  379. (102, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"9\",\"模块ID\":\"9\",\"模块标题\":\" The PeaRhino Introduction\",\"模块标识\":\"service_list\",\"模块描述\":{\"更新前\":\"<img layer-src=\\\"<img src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/15\\/296a0722807ad976a7f40bf5313ede6a.jpg\\\" width=\\\"779\\\" height=\\\"306\\\" alt=\\\"\\\" \\/> \\\" src=\\\"<img src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/15\\/296a0722807ad976a7f40bf5313ede6a.jpg\\\" width=\\\"779\\\" height=\\\"306\\\" alt=\\\"\\\" \\/> \\\" width=\\\"150\\\">\",\"更新后\":\"<img layer-src=\\\"<img src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/15\\/296a0722807ad976a7f40bf5313ede6a.jpg\\\" width=\\\"779\\\" height=\\\"306\\\" alt=\\\"\\\" \\/>\\\" src=\\\"<img src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/15\\/296a0722807ad976a7f40bf5313ede6a.jpg\\\" width=\\\"779\\\" height=\\\"306\\\" alt=\\\"\\\" \\/>\\\" width=\\\"150\\\">\"},\"是否显示内容\":\"显示\",\"内容显示条数\":{\"更新前\":\"4\",\"更新后\":\"5\"},\"所属页面\":\"Our Technology\",\"内容功能类型\":\"自定义\",\"内容启用的字段\":\"链接\",\"排序\":\"78\"}', 9, 1, 1663297058),
  380. (103, 'page', 'data', '1,14,15', '页面管理.内容管理', 2, 1, '{\"ID\":\"18\",\"所属模块\":\" The PeaRhino Introduction\",\"功能类型\":\"自定义\",\"标题\":\"Operation\",\"内容\":{\"更新前\":\"The PeaRhino System operation is attractive because of its capabilities:\\r\\nTransportable\\r\\nVersatility\\r\\nContingency Application\",\"更新后\":\"The PeaRhino System operation is attractive because of its capabilities:\\r\\n<br \\/>Transportable\\r\\n<br \\/>Versatility\\r\\n<br \\/>Contingency Application\"},\"排序\":\"5\"}', 18, 1, 1663297080),
  381. (104, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"9\",\"模块ID\":\"9\",\"模块标题\":\" The PeaRhino Introduction\",\"模块标识\":\"service_list\",\"模块描述\":\"<img layer-src=\\\"<img src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/15\\/296a0722807ad976a7f40bf5313ede6a.jpg\\\" width=\\\"779\\\" height=\\\"306\\\" alt=\\\"\\\" \\/>\\\" src=\\\"<img src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/15\\/296a0722807ad976a7f40bf5313ede6a.jpg\\\" width=\\\"779\\\" height=\\\"306\\\" alt=\\\"\\\" \\/>\\\" width=\\\"150\\\">\",\"是否显示内容\":\"显示\",\"内容显示条数\":\"5\",\"所属页面\":\"Our Technology\",\"内容功能类型\":\"自定义\",\"内容启用的字段\":{\"更新前\":\"4,1\",\"更新后\":\"链接,图片\"},\"排序\":\"78\"}', 9, 1, 1663297315),
  382. (105, 'page', 'data', '1,14,15', '页面管理.内容管理', 2, 1, '{\"ID\":\"14\",\"所属模块\":\" The PeaRhino Introduction\",\"功能类型\":\"自定义\",\"标题\":\"Rapid\",\"图片\":{\"更新前\":\"<img layer-src=\\\"1\\\" src=\\\"1\\\" width=\\\"150\\\">\",\"更新后\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/14\\/10fb15c77258a991b0028080a64fb42d.png\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/14\\/10fb15c77258a991b0028080a64fb42d.png\\\" width=\\\"150\\\">\"},\"内容\":\"PeaRhino is pre-built and set up to be commissioned immediately, it is a rapid solution to any frontline team.\",\"排序\":\"10\"}', 14, 1, 1663297353),
  383. (106, 'page', 'data', '1,14,15', '页面管理.内容管理', 2, 1, '{\"ID\":\"15\",\"所属模块\":\" The PeaRhino Introduction\",\"功能类型\":\"自定义\",\"标题\":\"Hi-speed\",\"图片\":{\"更新前\":\"\",\"更新后\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/14\\/4a47a0db6e60853dedfcfdf08a5ca249.png\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/14\\/4a47a0db6e60853dedfcfdf08a5ca249.png\\\" width=\\\"150\\\">\"},\"内容\":\"PeaRhino is a Self-Contained Site product, offers Hi-speed telecommunication up to 5G and beyond.\",\"排序\":\"9\"}', 15, 1, 1663297362);
  384. INSERT INTO `peasafe_manage_log` (`id`, `project`, `table`, `menu_id`, `name`, `type`, `admin`, `info`, `tid`, `state`, `cdate`) VALUES
  385. (107, 'page', 'data', '1,14,15', '页面管理.内容管理', 2, 1, '{\"ID\":\"16\",\"所属模块\":\" The PeaRhino Introduction\",\"功能类型\":\"自定义\",\"标题\":\"Intelligent\",\"图片\":{\"更新前\":\"\",\"更新后\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/09\\/b6c31d01d41c9e1714958f9c56d01d8f.png\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/09\\/b6c31d01d41c9e1714958f9c56d01d8f.png\\\" width=\\\"150\\\">\"},\"内容\":\"PeaRhino is AI (artificial intelligence) that features an independent service, private network, satellite, and data of 3G, 4G, 4G LTE, 5G, and beyond. PeaRhino can be integrated to be any network operation.\",\"排序\":\"8\"}', 16, 1, 1663297371),
  386. (108, 'page', 'data', '1,14,15', '页面管理.内容管理', 2, 1, '{\"ID\":\"14\",\"所属模块\":\" The PeaRhino Introduction\",\"功能类型\":\"自定义\",\"标题\":\"Rapid\",\"图片\":{\"更新前\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/14\\/10fb15c77258a991b0028080a64fb42d.png\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/14\\/10fb15c77258a991b0028080a64fb42d.png\\\" width=\\\"150\\\">\",\"更新后\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/14\\/10fb15c77258a991b0028080a64fb42d.png.cr_85_19_399_361_0_1_1.jpg\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/14\\/10fb15c77258a991b0028080a64fb42d.png.cr_85_19_399_361_0_1_1.jpg\\\" width=\\\"150\\\">\"},\"内容\":\"PeaRhino is pre-built and set up to be commissioned immediately, it is a rapid solution to any frontline team.\",\"排序\":\"10\"}', 14, 1, 1663297757),
  387. (109, 'page', 'data', '1,14,15', '页面管理.内容管理', 2, 1, '{\"ID\":\"15\",\"所属模块\":\" The PeaRhino Introduction\",\"功能类型\":\"自定义\",\"标题\":\"Hi-speed\",\"图片\":{\"更新前\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/14\\/4a47a0db6e60853dedfcfdf08a5ca249.png\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/14\\/4a47a0db6e60853dedfcfdf08a5ca249.png\\\" width=\\\"150\\\">\",\"更新后\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/7142b8354ca8a352b2b805f997c71549.png.cr_294_5_275_285_0_1_1.jpg\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/7142b8354ca8a352b2b805f997c71549.png.cr_294_5_275_285_0_1_1.jpg\\\" width=\\\"150\\\">\"},\"内容\":\"PeaRhino is a Self-Contained Site product, offers Hi-speed telecommunication up to 5G and beyond.\",\"排序\":\"9\"}', 15, 1, 1663297796),
  388. (110, 'page', 'data', '1,14,15', '页面管理.内容管理', 2, 1, '{\"ID\":\"16\",\"所属模块\":\" The PeaRhino Introduction\",\"功能类型\":\"自定义\",\"标题\":\"Intelligent\",\"图片\":{\"更新前\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/09\\/b6c31d01d41c9e1714958f9c56d01d8f.png\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/09\\/b6c31d01d41c9e1714958f9c56d01d8f.png\\\" width=\\\"150\\\">\",\"更新后\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/95106a90f455887e4a4b298735a4641b.png\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/95106a90f455887e4a4b298735a4641b.png\\\" width=\\\"150\\\">\"},\"内容\":\"PeaRhino is AI (artificial intelligence) that features an independent service, private network, satellite, and data of 3G, 4G, 4G LTE, 5G, and beyond. PeaRhino can be integrated to be any network operation.\",\"排序\":\"8\"}', 16, 1, 1663297826),
  389. (111, 'page', 'data', '1,14,15', '页面管理.内容管理', 2, 1, '{\"ID\":\"15\",\"所属模块\":\" The PeaRhino Introduction\",\"功能类型\":\"自定义\",\"标题\":\"Hi-speed\",\"图片\":{\"更新前\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/7142b8354ca8a352b2b805f997c71549.png.cr_294_5_275_285_0_1_1.jpg\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/7142b8354ca8a352b2b805f997c71549.png.cr_294_5_275_285_0_1_1.jpg\\\" width=\\\"150\\\">\",\"更新后\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/0a15afc49252258b6e7c0821c3499d3d.png.cr_47_2_324_245_0_1_1.jpg\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/0a15afc49252258b6e7c0821c3499d3d.png.cr_47_2_324_245_0_1_1.jpg\\\" width=\\\"150\\\">\"},\"内容\":\"PeaRhino is a Self-Contained Site product, offers Hi-speed telecommunication up to 5G and beyond.\",\"排序\":\"9\"}', 15, 1, 1663297898),
  390. (112, 'page', 'data', '1,14,15', '页面管理.内容管理', 2, 1, '{\"ID\":\"16\",\"所属模块\":\" The PeaRhino Introduction\",\"功能类型\":\"自定义\",\"标题\":\"Intelligent\",\"图片\":{\"更新前\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/95106a90f455887e4a4b298735a4641b.png\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/95106a90f455887e4a4b298735a4641b.png\\\" width=\\\"150\\\">\",\"更新后\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/bbfd20d91fffc3279b8192142f9533f1.jpg\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/bbfd20d91fffc3279b8192142f9533f1.jpg\\\" width=\\\"150\\\">\"},\"内容\":\"PeaRhino is AI (artificial intelligence) that features an independent service, private network, satellite, and data of 3G, 4G, 4G LTE, 5G, and beyond. PeaRhino can be integrated to be any network operation.\",\"排序\":\"8\"}', 16, 1, 1663298078),
  391. (113, 'page', 'data', '1,14,15', '页面管理.内容管理', 2, 1, '{\"ID\":\"15\",\"所属模块\":\" The PeaRhino Introduction\",\"功能类型\":\"自定义\",\"标题\":\"Hi-speed\",\"图片\":{\"更新前\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/0a15afc49252258b6e7c0821c3499d3d.png.cr_47_2_324_245_0_1_1.jpg\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/0a15afc49252258b6e7c0821c3499d3d.png.cr_47_2_324_245_0_1_1.jpg\\\" width=\\\"150\\\">\",\"更新后\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/47228ec1e3533778c2a4cb47a562a083.png\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/47228ec1e3533778c2a4cb47a562a083.png\\\" width=\\\"150\\\">\"},\"内容\":\"PeaRhino is a Self-Contained Site product, offers Hi-speed telecommunication up to 5G and beyond.\",\"排序\":\"9\"}', 15, 1, 1663298093),
  392. (114, 'page', 'data', '1,14,15', '页面管理.内容管理', 2, 1, '{\"ID\":\"14\",\"所属模块\":\" The PeaRhino Introduction\",\"功能类型\":\"自定义\",\"标题\":\"Rapid\",\"图片\":{\"更新前\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/14\\/10fb15c77258a991b0028080a64fb42d.png.cr_85_19_399_361_0_1_1.jpg\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/14\\/10fb15c77258a991b0028080a64fb42d.png.cr_85_19_399_361_0_1_1.jpg\\\" width=\\\"150\\\">\",\"更新后\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/2297fe42837979e0599dd75f6be1251b.jpg.cr_175_15_462_403_0_1_1.jpg\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/2297fe42837979e0599dd75f6be1251b.jpg.cr_175_15_462_403_0_1_1.jpg\\\" width=\\\"150\\\">\"},\"内容\":\"PeaRhino is pre-built and set up to be commissioned immediately, it is a rapid solution to any frontline team.\",\"排序\":\"10\"}', 14, 1, 1663298165),
  393. (115, 'page', 'data', '1,14,15', '页面管理.内容管理', 2, 1, '{\"ID\":\"15\",\"所属模块\":\" The PeaRhino Introduction\",\"功能类型\":\"自定义\",\"标题\":\"Hi-speed\",\"图片\":{\"更新前\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/47228ec1e3533778c2a4cb47a562a083.png\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/47228ec1e3533778c2a4cb47a562a083.png\\\" width=\\\"150\\\">\",\"更新后\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/e58fdbedc1d208ba25baacc0dc7ec622.jpg.cr_137_6_468_364_0_1_1.jpg\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/e58fdbedc1d208ba25baacc0dc7ec622.jpg.cr_137_6_468_364_0_1_1.jpg\\\" width=\\\"150\\\">\"},\"内容\":\"PeaRhino is a Self-Contained Site product, offers Hi-speed telecommunication up to 5G and beyond.\",\"排序\":\"9\"}', 15, 1, 1663298366),
  394. (116, 'page', 'data', '1,14,15', '页面管理.内容管理', 2, 1, '{\"ID\":\"16\",\"所属模块\":\" The PeaRhino Introduction\",\"功能类型\":\"自定义\",\"标题\":\"Intelligent\",\"图片\":{\"更新前\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/bbfd20d91fffc3279b8192142f9533f1.jpg\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/bbfd20d91fffc3279b8192142f9533f1.jpg\\\" width=\\\"150\\\">\",\"更新后\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/0aa45d56dee92f19ad654022eca4a30a.jpg.cr_173_14_449_380_0_1_1.jpg\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/0aa45d56dee92f19ad654022eca4a30a.jpg.cr_173_14_449_380_0_1_1.jpg\\\" width=\\\"150\\\">\"},\"内容\":\"PeaRhino is AI (artificial intelligence) that features an independent service, private network, satellite, and data of 3G, 4G, 4G LTE, 5G, and beyond. PeaRhino can be integrated to be any network operation.\",\"排序\":\"8\"}', 16, 1, 1663298445),
  395. (117, 'page', 'col', '1,14,16', '页面管理.字段设置', 2, 1, '{\"ID\":\"2\",\"字段名称\":\"图片\",\"字段标识\":\"pic\",\"字段描述\":\"图片\",\"类型\":\"单张图片\",\"是否必填\":{\"更新前\":\"必填\",\"更新后\":\"选填\"},\"排序(数值越大越靠前)\":\"1\"}', 2, 1, 1663299387),
  396. (118, 'page', 'data', '1,14,15', '页面管理.内容管理', 2, 1, '{\"ID\":\"14\",\"所属模块\":\" The PeaRhino Introduction\",\"功能类型\":\"自定义\",\"标题\":\"Rapid\",\"图片\":{\"更新前\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/2297fe42837979e0599dd75f6be1251b.jpg.cr_175_15_462_403_0_1_1.jpg\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/2297fe42837979e0599dd75f6be1251b.jpg.cr_175_15_462_403_0_1_1.jpg\\\" width=\\\"150\\\">\",\"更新后\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/0aa45d56dee92f19ad654022eca4a30a.jpg.cr_173_14_449_380_0_1_1.jpg\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/0aa45d56dee92f19ad654022eca4a30a.jpg.cr_173_14_449_380_0_1_1.jpg\\\" width=\\\"150\\\">\"},\"内容\":\"PeaRhino is pre-built and set up to be commissioned immediately, it is a rapid solution to any frontline team.\",\"排序\":\"10\"}', 14, 1, 1663299699),
  397. (119, 'page', 'data', '1,14,15', '页面管理.内容管理', 2, 1, '{\"ID\":\"16\",\"所属模块\":\" The PeaRhino Introduction\",\"功能类型\":\"自定义\",\"标题\":\"Intelligent\",\"图片\":{\"更新前\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/0aa45d56dee92f19ad654022eca4a30a.jpg.cr_173_14_449_380_0_1_1.jpg\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/0aa45d56dee92f19ad654022eca4a30a.jpg.cr_173_14_449_380_0_1_1.jpg\\\" width=\\\"150\\\">\",\"更新后\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/2297fe42837979e0599dd75f6be1251b.jpg.cr_175_15_462_403_0_1_1.jpg\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/2297fe42837979e0599dd75f6be1251b.jpg.cr_175_15_462_403_0_1_1.jpg\\\" width=\\\"150\\\">\"},\"内容\":\"PeaRhino is AI (artificial intelligence) that features an independent service, private network, satellite, and data of 3G, 4G, 4G LTE, 5G, and beyond. PeaRhino can be integrated to be any network operation.\",\"排序\":\"8\"}', 16, 1, 1663299704),
  398. (120, 'page', 'module', '1,14,15', '页面管理.模块列表', 1, 1, '{\"ID\":\"10\",\"模块标题\":\"Operation\",\"模块标识\":\"careers\",\"是否显示内容\":\"显示\",\"内容显示条数\":\"10\",\"所属页面\":\"Our Technology\",\"排序\":\"1\"}', 10, 1, 1663299896),
  399. (121, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"10\",\"模块ID\":\"10\",\"模块标题\":\"Operation\",\"模块标识\":\"careers\",\"是否显示内容\":\"显示\",\"内容显示条数\":\"10\",\"所属页面\":\"Our Technology\",\"内容功能类型\":\"自定义\",\"内容启用的字段\":\"链接\",\"排序\":\"77\"}', 10, 1, 1663299916),
  400. (122, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"10\",\"模块ID\":\"10\",\"模块标题\":\"Operation\",\"模块标识\":\"careers\",\"模块描述\":{\"更新前\":\"\",\"更新后\":\"PeaRhino operations are:\"},\"是否显示内容\":\"显示\",\"内容显示条数\":\"10\",\"所属页面\":\"Our Technology\",\"内容功能类型\":\"自定义\",\"内容启用的字段\":\"链接\",\"排序\":\"77\"}', 10, 1, 1663299944),
  401. (123, 'page', 'data', '1,14,15', '页面管理.内容管理', 1, 1, '{\"ID\":\"19\",\"所属模块\":\"Operation\",\"功能类型\":\"自定义\",\"标题\":\"Transportable\",\"内容\":\"A Contingency Plan is not only necessary to police, fire, EMS, hospitals, and FEMA, it is crucial to protect and maintain communication during any major disaster. PeaSafe is the cost-saving and safe solution to subscribers. This option can cut costs and yield worry-free maintenance of the system. The subscribers have a piece of mind that we can deploy and re-connect their data and communication when the situation arises.\\r\\n\\r\\n\",\"排序\":\"1\"}', 19, 1, 1663299956),
  402. (124, 'page', 'data', '1,14,15', '页面管理.内容管理', 1, 1, '{\"ID\":\"20\",\"所属模块\":\"Operation\",\"功能类型\":\"自定义\",\"标题\":\"Versatility\",\"内容\":\"PeaRhino is versatile and can fill the gap of under-served areas in need of bandwidth solutions. PeaRhino provides rapid deployment of cellular and Wifi communication to lesser developed regions at an affordable solution. These communities all over the world don’t have to rely on years of development of today’s technology. Their schools, townships, police, fire, and hospital need cellular\\/Wifi today, not a decade from now. Furthermore, PeaRhino is attractive worldwide because of its compatibility with 3G, 4G, 4G LTE and upgrade-ready for beyond.\\r\\n\\r\\n\",\"排序\":\"1\"}', 20, 1, 1663299968),
  403. (125, 'page', 'data', '1,14,15', '页面管理.内容管理', 1, 1, '{\"ID\":\"21\",\"所属模块\":\"Operation\",\"功能类型\":\"自定义\",\"标题\":\"Contingency Plan\",\"内容\":\"A Contingency Plan is not only necessary to police, fire, EMS, hospitals, and FEMA, it is crucial to protect and maintain communication during any major disaster. PeaRhino is available to support subscribers. This option can cut costs and yield worry-free maintenance of the system. The subscribers have a piece of mind that we can deploy and re-connect their data and communication when the situation arises.\\r\\n\\r\\n\",\"排序\":\"8\"}', 21, 1, 1663299983),
  404. (126, 'page', 'data', '1,14,15', '页面管理.内容管理', 2, 1, '{\"ID\":\"18\",\"所属模块\":\" The PeaRhino Introduction\",\"功能类型\":\"自定义\",\"标题\":\"Operation\",\"内容\":{\"更新前\":\"The PeaRhino System operation is attractive because of its capabilities:\\r\\n<br \\/>Transportable\\r\\n<br \\/>Versatility\\r\\n<br \\/>Contingency Application\",\"更新后\":\"The PeaRhino System operation is attractive because of its capabilities:\\r\\n<br \\/>1、Transportable\\r\\n<br \\/>2、Versatility\\r\\n<br \\/>3、Contingency Application\"},\"排序\":\"5\"}', 18, 1, 1663300497),
  405. (127, 'page', 'page', '1,14,16', '页面管理.页面列表', 2, 1, '{\"ID\":\"2\",\"页面名称\":\"Our Technology\",\"页面标识\":\"technology\",\"页面描述\":{\"更新前\":\"At PeaSafe, we set a high standard to provide our frontliners with the best equipment and technology for Disaster Recovery. When an unpredicted disastrous event strikes, communication plays a vital role to respond ASAP to save lives. PeaSafe is the go-to name to provide the latest telecommunication services. PeaSafe is authorized to introduces the PeaRhino System from Peatalk which allows a vertical, rapid deploy tower that is easy to use, all self-contained, and is not restricted to existing tower locations. This flexibility makes it attractive and cost-effective for any disaster recovery program from local to all over the world.\\r\\n\",\"更新后\":\"Our Technology\"},\"排序\":\"99\"}', 2, 1, 1663300671),
  406. (128, 'page', 'page', '1,14,16', '页面管理.页面列表', 1, 1, '{\"ID\":\"4\",\"页面名称\":\"Our Readiness\",\"页面标识\":\"readiness\",\"页面描述\":\"Our Readiness\",\"排序\":\"1\"}', 4, 1, 1663300694),
  407. (129, 'page', 'module', '1,14,15', '页面管理.模块列表', 1, 1, '{\"ID\":\"11\",\"模块标题\":\"Our Readiness\",\"模块标识\":\"banner\",\"模块描述\":\"The hidden unaware issues of domestic or abroad preparedness are more common than expected. The modern civilization of infrastructures continues to improve reliability, capability, and interoperability, but always lacks immediate response when disasters occurred. Mother nature spares no man-made infrastructures. A sudden total breakdown of telecommunication can result in the loss of lives. How to minimize damages and quickly recover from the disastrous event is always a daunting challenge.\\r\\nThrough many studies over many decades have proven that modern civilization is still lacking a solution to respond rapidly when disasters strike. At PeaSafe, we fill the gap and always ready to support our front-line workers, police, fire, EMS, hospital, news network, and our community.\",\"是否显示内容\":\"显示\",\"内容显示条数\":\"10\",\"所属页面\":\"Our Readiness\",\"排序\":\"1\"}', 11, 1, 1663300726),
  408. (130, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"11\",\"模块ID\":\"11\",\"模块标题\":\"Our Readiness\",\"模块标识\":\"banner\",\"模块图片\":{\"更新前\":\"\",\"更新后\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/7269932fdd7f8ba760b50d8a119a60c0.png\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/7269932fdd7f8ba760b50d8a119a60c0.png\\\" width=\\\"150\\\">\"},\"模块描述\":\"The hidden unaware issues of domestic or abroad preparedness are more common than expected. The modern civilization of infrastructures continues to improve reliability, capability, and interoperability, but always lacks immediate response when disasters occurred. Mother nature spares no man-made infrastructures. A sudden total breakdown of telecommunication can result in the loss of lives. How to minimize damages and quickly recover from the disastrous event is always a daunting challenge.\\r\\nThrough many studies over many decades have proven that modern civilization is still lacking a solution to respond rapidly when disasters strike. At PeaSafe, we fill the gap and always ready to support our front-line workers, police, fire, EMS, hospital, news network, and our community.\",\"是否显示内容\":\"显示\",\"内容显示条数\":\"10\",\"所属页面\":\"Our Readiness\",\"排序\":\"70\"}', 11, 1, 1663300793),
  409. (131, 'page', 'module', '1,14,15', '页面管理.模块列表', 1, 1, '{\"ID\":\"12\",\"模块标题\":\"Be Prepare when Telecommunications Fail\",\"模块标识\":\"news\",\"是否显示内容\":\"显示\",\"内容显示条数\":\"10\",\"所属页面\":\"Our Readiness\",\"排序\":\"1\"}', 12, 1, 1663311492),
  410. (132, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"12\",\"模块ID\":\"12\",\"模块标题\":\"Be Prepare when Telecommunications Fail\",\"模块标识\":\"news\",\"是否显示内容\":\"显示\",\"内容显示条数\":\"10\",\"所属页面\":\"Our Readiness\",\"内容功能类型\":\"自定义\",\"内容启用的字段\":\"内容,链接,图片\",\"排序\":\"69\"}', 12, 1, 1663311698),
  411. (133, 'page', 'data', '1,14,15', '页面管理.内容管理', 1, 1, '{\"ID\":\"22\",\"所属模块\":\"Be Prepare when Telecommunications Fail\",\"功能类型\":\"自定义\",\"标题\":\"Congestion Overload\",\"图片\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/14\\/f3ccdd27d2000e3f9255a7e3e2c48800.jpg\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/14\\/f3ccdd27d2000e3f9255a7e3e2c48800.jpg\\\" width=\\\"150\\\">\",\"排序\":\"10\"}', 22, 1, 1663311727),
  412. (134, 'page', 'data', '1,14,15', '页面管理.内容管理', 1, 1, '{\"ID\":\"23\",\"所属模块\":\"Be Prepare when Telecommunications Fail\",\"功能类型\":\"自定义\",\"标题\":\"Disruption of Infrastructure\",\"图片\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/14\\/156005c5baf40ff51a327f1c34f2975b.jpg\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/14\\/156005c5baf40ff51a327f1c34f2975b.jpg\\\" width=\\\"150\\\">\",\"排序\":\"9\"}', 23, 1, 1663311762),
  413. (135, 'page', 'data', '1,14,15', '页面管理.内容管理', 1, 1, '{\"ID\":\"24\",\"所属模块\":\"Be Prepare when Telecommunications Fail\",\"功能类型\":\"自定义\",\"标题\":\"Physical Destruction\",\"图片\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/0aa45d56dee92f19ad654022eca4a30a.jpg\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/0aa45d56dee92f19ad654022eca4a30a.jpg\\\" width=\\\"150\\\">\",\"排序\":\"1\"}', 24, 1, 1663311779),
  414. (136, 'page', 'module', '1,14,15', '页面管理.模块列表', 1, 1, '{\"ID\":\"13\",\"模块标题\":\"Info\",\"模块标识\":\"info\",\"是否显示内容\":\"显示\",\"内容显示条数\":\"10\",\"所属页面\":\"Our Readiness\",\"排序\":\"68\"}', 13, 1, 1663313137),
  415. (137, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"13\",\"模块ID\":\"13\",\"模块标题\":\"Info\",\"模块标识\":\"info\",\"是否显示内容\":\"显示\",\"内容显示条数\":{\"更新前\":\"10\",\"更新后\":\"3\"},\"所属页面\":\"Our Readiness\",\"内容功能类型\":\"自定义\",\"内容启用的字段\":\"链接,图片\",\"排序\":\"68\"}', 13, 1, 1663313148),
  416. (138, 'page', 'data', '1,14,15', '页面管理.内容管理', 1, 1, '{\"ID\":\"25\",\"所属模块\":\"Info\",\"功能类型\":\"自定义\",\"标题\":\"Congestion Overload\",\"图片\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/2297fe42837979e0599dd75f6be1251b.jpg\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/2297fe42837979e0599dd75f6be1251b.jpg\\\" width=\\\"150\\\">\",\"内容\":\"During all disasters, countless calls cannot go through due to network failure and\\/or congestion. This only adds to the chaos and generates further crisis. The surge of demand overwhelmed most of any current network. For earthquakes, landslides, volcanoes, wildfire, tsunami, and many other disaster events, most major Telco can only apply their “disaster management” plan by prioritizing network traffic. Even then, the solution is cut short for others who are trying to cope with the situation and are not able to reach their loved ones.\\r\\n\\r\\nPeaSafe Disaster Recovery with PeaRhino is compact, transportable, ready for rapid deployment to resolve network congestion overload.\",\"排序\":\"10\"}', 25, 1, 1663313171),
  417. (139, 'page', 'col', '1,14,16', '页面管理.字段设置', 1, 1, '{\"ID\":\"5\",\"字段名称\":\"编辑器内容\",\"字段标识\":\"editor\",\"字段描述\":\"编辑器内容\",\"类型\":\"编辑器\",\"是否必填\":\"必填\",\"排序(数值越大越靠前)\":\"1\"}', 5, 1, 1663313202),
  418. (140, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"13\",\"模块ID\":\"13\",\"模块标题\":\"Info\",\"模块标识\":\"info\",\"是否显示内容\":\"显示\",\"内容显示条数\":\"3\",\"所属页面\":\"Our Readiness\",\"内容功能类型\":\"自定义\",\"内容启用的字段\":{\"更新前\":\"标题\",\"更新后\":\"内容,链接\"},\"排序\":\"68\"}', 13, 1, 1663313215),
  419. (141, 'page', 'data', '1,14,15', '页面管理.内容管理', 2, 1, '{\"ID\":\"25\",\"所属模块\":\"Info\",\"功能类型\":\"自定义\",\"标题\":\"Congestion Overload\",\"图片\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/2297fe42837979e0599dd75f6be1251b.jpg\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/2297fe42837979e0599dd75f6be1251b.jpg\\\" width=\\\"150\\\">\",\"内容\":\"During all disasters, countless calls cannot go through due to network failure and\\/or congestion. This only adds to the chaos and generates further crisis. The surge of demand overwhelmed most of any current network. For earthquakes, landslides, volcanoes, wildfire, tsunami, and many other disaster events, most major Telco can only apply their “disaster management” plan by prioritizing network traffic. Even then, the solution is cut short for others who are trying to cope with the situation and are not able to reach their loved ones.\\r\\n\\r\\nPeaSafe Disaster Recovery with PeaRhino is compact, transportable, ready for rapid deployment to resolve network congestion overload.\",\"编辑器内容\":{\"更新前\":\"\",\"更新后\":\"<p>\\r\\n\\tDuring all disasters, countless calls cannot go through due to network failure and\\/or congestion. This only adds to the chaos and generates further crisis. The surge of demand overwhelmed most of any current network. For earthquakes, landslides, volcanoes, wildfire, tsunami, and many other disaster events, most major Telco can only apply their “disaster management” plan by prioritizing network traffic. Even then, the solution is cut short for others who are trying to cope with the situation and are not able to reach their loved ones. \\r\\n<\\/p>\\r\\n<p>\\r\\n\\tPeaSafe Disaster Recovery with PeaRhino is compact, transportable, ready for rapid deployment to resolve network congestion overload.\\r\\n<\\/p>\"},\"排序\":\"10\"}', 25, 1, 1663313253),
  420. (142, 'page', 'data', '1,14,15', '页面管理.内容管理', 1, 1, '{\"ID\":\"26\",\"所属模块\":\"Info\",\"功能类型\":\"自定义\",\"标题\":\"Disruption of Infrastructure\",\"图片\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/e58fdbedc1d208ba25baacc0dc7ec622.jpg\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/e58fdbedc1d208ba25baacc0dc7ec622.jpg\\\" width=\\\"150\\\">\",\"编辑器内容\":\"<p>\\r\\n\\tAll telecommunication networks always rely on local and regional technical systems to maintain functional operation. Once the local and regional systems fail during a disastrous event, telecommunication networks would equally suffer. \\r\\n<\\/p>\\r\\n<p>\\r\\n\\tBesides electrical surge or loss, many telecommunication equipment can easily be out of commission due to earthquakes, hurricanes, tornadoes, or floods. Waiting for the clean-up and installation of new equipment is lengthy and unpredictable. \\r\\n<\\/p>\\r\\n<p>\\r\\n\\tPeaSafe Disaster Recovery provides PeaRhino to establish communication and data. PeaRhino is ready to deploy and commission within hours. Its mobility is the advantage to recover communication lost right in the center of ground-zero.\\r\\n<\\/p>\",\"排序\":\"1\"}', 26, 1, 1663313333),
  421. (143, 'page', 'col', '1,14,16', '页面管理.字段设置', 2, 1, '{\"ID\":\"5\",\"字段名称\":{\"更新前\":\"编辑器内容\",\"更新后\":\"内容\"},\"字段标识\":\"editor\",\"字段描述\":\"编辑器内容\",\"类型\":\"编辑器\",\"是否必填\":\"必填\",\"排序(数值越大越靠前)\":\"1\"}', 5, 1, 1663313647),
  422. (144, 'page', 'data', '1,14,15', '页面管理.内容管理', 1, 1, '{\"ID\":\"27\",\"所属模块\":\"Info\",\"功能类型\":\"自定义\",\"标题\":\"Physical Destruction\",\"图片\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/0aa45d56dee92f19ad654022eca4a30a.jpg\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/0aa45d56dee92f19ad654022eca4a30a.jpg\\\" width=\\\"150\\\">\",\"内容\":\"<p>\\r\\n\\tAmong other disruptions, physical destruction inflicts the most harm to the telecommunication network. Major funding equals a time-consuming process to rebuild. Hence, the physical destruction is always the most severe of all accounted disastrous events. The collapse of towers, buildings, bridges, severe cables takes months or years to recoup. \\r\\n<\\/p>\\r\\n<p>\\r\\n\\tPeaSafe Disaster Recovery with PeaRhino is versatile and reliable to play a temporary replacement role of the destroyed network(s). Because of its mobility, the PeaSafe Disaster Recovery with PeaRhino can be relocated as needed to meet the immediate demand within the disastrous area.\\r\\n<\\/p>\",\"排序\":\"1\"}', 27, 1, 1663314271),
  423. (145, 'page', 'page', '1,14,16', '页面管理.页面列表', 1, 1, '{\"ID\":\"5\",\"页面名称\":\"Our Markets\",\"页面标识\":\"market\",\"页面描述\":\"Our Markets\",\"排序\":\"1\"}', 5, 1, 1663315840),
  424. (146, 'page', 'module', '1,14,15', '页面管理.模块列表', 1, 1, '{\"ID\":\"14\",\"模块标题\":\"Our Markets\",\"模块标识\":\"banner\",\"模块图片\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/362a35e6651a4d1e398238a3ec43376e.jpg\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/362a35e6651a4d1e398238a3ec43376e.jpg\\\" width=\\\"150\\\">\",\"模块描述\":\"Communities are torn apart when disaster hits. Our frontliners risk their lives to rescue and save lives. But without communication, the daunting task would be impossible.\",\"是否显示内容\":\"显示\",\"内容显示条数\":\"10\",\"所属页面\":\"Our Markets\",\"排序\":\"60\"}', 14, 1, 1663315927),
  425. (147, 'page', 'module', '1,14,15', '页面管理.模块列表', 1, 1, '{\"ID\":\"15\",\"模块标题\":\"info\",\"模块标识\":\"info\",\"模块图片\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/47228ec1e3533778c2a4cb47a562a083.png\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/47228ec1e3533778c2a4cb47a562a083.png\\\" width=\\\"150\\\">\",\"模块描述\":\"PeaSafe Disaster Recovery with PeaRhinos can re-connect our front-line teams. From a plane crash site to a hurricane zone, from a mudslide to an earthquake, and\\/or from a wildfire to a tsunami, PeaSafe can partner up with local government agencies to provide a telecommunication network during the disastrous event. Police, Fire, EMS, Hospital, and FEMA are among many agencies that our system can provide telecommunication network solutions as soon as it deploys right in the heart of ground zero.\",\"是否显示内容\":\"显示\",\"内容显示条数\":\"10\",\"所属页面\":\"Our Markets\",\"排序\":\"59\"}', 15, 1, 1663315971),
  426. (148, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"15\",\"模块ID\":\"15\",\"模块标题\":\"info\",\"模块标识\":\"info\",\"是否显示内容\":\"显示\",\"内容显示条数\":\"10\",\"所属页面\":\"Our Markets\",\"排序\":\"59\"}', 15, 1, 1663315988),
  427. (149, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"15\",\"模块ID\":\"15\",\"模块标题\":\"info\",\"模块标识\":\"info\",\"是否显示内容\":\"显示\",\"内容显示条数\":\"10\",\"所属页面\":\"Our Markets\",\"内容功能类型\":\"自定义\",\"内容启用的字段\":\"内容,链接\",\"排序\":\"59\"}', 15, 1, 1663316006),
  428. (150, 'page', 'data', '1,14,15', '页面管理.内容管理', 1, 1, '{\"ID\":\"28\",\"所属模块\":\"info\",\"功能类型\":\"自定义\",\"标题\":\"PeaSafe Disaster Recovery\",\"图片\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/47228ec1e3533778c2a4cb47a562a083.png\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/47228ec1e3533778c2a4cb47a562a083.png\\\" width=\\\"150\\\">\",\"内容\":\"PeaSafe Disaster Recovery with PeaRhinos can re-connect our front-line teams. From a plane crash site to a hurricane zone, from a mudslide to an earthquake, and\\/or from a wildfire to a tsunami, PeaSafe can partner up with local government agencies to provide a telecommunication network during the disastrous event. Police, Fire, EMS, Hospital, and FEMA are among many agencies that our system can provide telecommunication network solutions as soon as it deploys right in the heart of ground zero.\",\"排序\":\"1\"}', 28, 1, 1663316069),
  429. (151, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"15\",\"模块ID\":\"15\",\"模块标题\":\"info\",\"模块标识\":{\"更新前\":\"info\",\"更新后\":\"market\"},\"是否显示内容\":\"显示\",\"内容显示条数\":\"10\",\"所属页面\":\"Our Markets\",\"内容功能类型\":\"自定义\",\"内容启用的字段\":\"内容,链接\",\"排序\":\"59\"}', 15, 1, 1663316148),
  430. (152, 'page', 'data', '1,14,15', '页面管理.内容管理', 1, 1, '{\"ID\":\"29\",\"所属模块\":\"info\",\"功能类型\":\"自定义\",\"标题\":\"1\",\"图片\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/15\\/30e62fddc14c05988b44e7c02788e187.jpg\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/15\\/30e62fddc14c05988b44e7c02788e187.jpg\\\" width=\\\"150\\\">\",\"排序\":\"1\"}', 29, 1, 1663316186),
  431. (153, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"15\",\"模块ID\":\"15\",\"模块标题\":\"info\",\"模块标识\":\"market\",\"是否显示内容\":\"显示\",\"内容显示条数\":\"10\",\"所属页面\":\"Our Markets\",\"内容功能类型\":\"自定义\",\"内容启用的字段\":{\"更新前\":\"5,2,1\",\"更新后\":\"内容,链接\"},\"排序\":\"59\"}', 15, 1, 1663316195),
  432. (154, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"15\",\"模块ID\":\"15\",\"模块标题\":{\"更新前\":\"info\",\"更新后\":\"PeaSafe Disaster Recovery\"},\"模块标识\":\"market\",\"是否显示内容\":\"显示\",\"内容显示条数\":\"10\",\"所属页面\":\"Our Markets\",\"内容功能类型\":\"自定义\",\"内容启用的字段\":{\"更新前\":\"链接\",\"更新后\":\"内容,链接\"},\"排序\":\"59\"}', 15, 1, 1663316206),
  433. (155, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"15\",\"模块ID\":\"15\",\"模块标题\":\"PeaSafe Disaster Recovery\",\"模块标识\":\"market\",\"模块描述\":{\"更新前\":\"\",\"更新后\":\"Communities are torn apart when disaster hits. Our frontliners risk their lives to rescue and save lives. But without communication, the daunting task would be impossible.\\r\\nPeaSafe Disaster Recovery with PeaRhinos can re-connect our front-line teams. From a plane crash site to a hurricane zone, from a mudslide to an earthquake, and\\/or from a wildfire to a tsunami, PeaSafe can partner up with local government agencies to provide a telecommunication network during the disastrous event. Police, Fire, EMS, Hospital, and FEMA are among many agencies that our system can provide telecommunication network solutions as soon as it deploys right in the heart of ground zero.\"},\"是否显示内容\":\"显示\",\"内容显示条数\":\"10\",\"所属页面\":\"Our Markets\",\"内容功能类型\":\"自定义\",\"内容启用的字段\":{\"更新前\":\"链接\",\"更新后\":\"内容,链接\"},\"排序\":\"59\"}', 15, 1, 1663316225),
  434. (156, 'page', 'data', '1,14,15', '页面管理.内容管理', 2, 1, '{\"ID\":\"28\",\"所属模块\":\"PeaSafe Disaster Recovery\",\"功能类型\":\"自定义\",\"标题\":{\"更新前\":\"PeaSafe Disaster Recovery\",\"更新后\":\"2\"},\"图片\":{\"更新前\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/47228ec1e3533778c2a4cb47a562a083.png\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/47228ec1e3533778c2a4cb47a562a083.png\\\" width=\\\"150\\\">\",\"更新后\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/15\\/8e1d9b7c546278946c8221ae4f3cf7a1.jpg\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/15\\/8e1d9b7c546278946c8221ae4f3cf7a1.jpg\\\" width=\\\"150\\\">\"},\"内容\":\"PeaSafe Disaster Recovery with PeaRhinos can re-connect our front-line teams. From a plane crash site to a hurricane zone, from a mudslide to an earthquake, and\\/or from a wildfire to a tsunami, PeaSafe can partner up with local government agencies to provide a telecommunication network during the disastrous event. Police, Fire, EMS, Hospital, and FEMA are among many agencies that our system can provide telecommunication network solutions as soon as it deploys right in the heart of ground zero.\",\"排序\":\"1\"}', 28, 1, 1663316238),
  435. (157, 'page', 'page', '1,14,16', '页面管理.页面列表', 1, 1, '{\"ID\":\"6\",\"页面名称\":\"Our Services\",\"页面标识\":\"service\",\"页面描述\":\"Our Services\",\"排序\":\"1\"}', 6, 1, 1663316263),
  436. (158, 'page', 'module', '1,14,15', '页面管理.模块列表', 1, 1, '{\"ID\":\"16\",\"模块标题\":\"Our Services\",\"模块标识\":\"banner\",\"模块图片\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/09\\/b6c31d01d41c9e1714958f9c56d01d8f.png\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/09\\/b6c31d01d41c9e1714958f9c56d01d8f.png\\\" width=\\\"150\\\">\",\"是否显示内容\":\"显示\",\"内容显示条数\":\"10\",\"所属页面\":\"Our Services\",\"排序\":\"50\"}', 16, 1, 1663316311),
  437. (159, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"16\",\"模块ID\":\"16\",\"模块标题\":\"Our Services\",\"模块标识\":\"banner\",\"模块图片\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/09\\/b6c31d01d41c9e1714958f9c56d01d8f.png\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/09\\/b6c31d01d41c9e1714958f9c56d01d8f.png\\\" width=\\\"150\\\">\",\"模块描述\":{\"更新前\":\"\",\"更新后\":\"PeaSafe is extremely confident in bringing “PeaRhino” to serve Disaster Recovery. Our fleet of PeaRhinos are updated with routine services and maintenances. PeaSafe is on stand-by and ready to launch into action.\"},\"是否显示内容\":\"显示\",\"内容显示条数\":\"10\",\"所属页面\":\"Our Services\",\"排序\":\"50\"}', 16, 1, 1663316345),
  438. (160, 'main', 'menu', '1,17,26', '基础设置.网站菜单管理', 2, 1, '{\"ID\":\"5\",\"菜单名称\":\"Our Services\",\"菜单链接\":{\"更新前\":\"home?page=services\\r\\n\",\"更新后\":\"home?page=service\\r\\n\"}}', 5, 1, 1663316369),
  439. (161, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"16\",\"模块ID\":\"16\",\"模块标题\":\"Our Services\",\"模块标识\":\"banner\",\"模块图片\":{\"更新前\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/09\\/b6c31d01d41c9e1714958f9c56d01d8f.png\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/09\\/b6c31d01d41c9e1714958f9c56d01d8f.png\\\" width=\\\"150\\\">\",\"更新后\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/15\\/18e2999891374a475d0687ca9f989d83.jpg\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/15\\/18e2999891374a475d0687ca9f989d83.jpg\\\" width=\\\"150\\\">\"},\"模块描述\":\"PeaSafe is extremely confident in bringing “PeaRhino” to serve Disaster Recovery. Our fleet of PeaRhinos are updated with routine services and maintenances. PeaSafe is on stand-by and ready to launch into action.\",\"是否显示内容\":\"显示\",\"内容显示条数\":\"10\",\"所属页面\":\"Our Services\",\"排序\":\"50\"}', 16, 1, 1663316407),
  440. (162, 'page', 'module', '1,14,15', '页面管理.模块列表', 1, 1, '{\"ID\":\"17\",\"模块标题\":\"Info\",\"模块标识\":\"info\",\"是否显示内容\":\"显示\",\"内容显示条数\":\"10\",\"所属页面\":\"Our Services\",\"排序\":\"49\"}', 17, 1, 1663316444),
  441. (163, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"17\",\"模块ID\":\"17\",\"模块标题\":\"Info\",\"模块标识\":\"info\",\"是否显示内容\":\"显示\",\"内容显示条数\":\"10\",\"所属页面\":\"Our Services\",\"内容功能类型\":\"自定义\",\"内容启用的字段\":\"内容,链接\",\"排序\":\"49\"}', 17, 1, 1663316461),
  442. (164, 'page', 'data', '1,14,15', '页面管理.内容管理', 1, 1, '{\"ID\":\"30\",\"所属模块\":\"Info\",\"功能类型\":\"自定义\",\"标题\":\"Renting the PeaRhino system\",\"图片\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/e58fdbedc1d208ba25baacc0dc7ec622.jpg\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/e58fdbedc1d208ba25baacc0dc7ec622.jpg\\\" width=\\\"150\\\">\",\"内容\":\"<p>\\r\\n\\tPeaSafe provides communication and data services of 4G or 5G network to rapidly recover network disruption, network loss, or network replacement during a disastrous event. \\r\\n<\\/p>\\r\\n<p>\\r\\n\\tWith the PeaRhino system, our PeaSafe team is always ready to transport, deploy, and commission 4G or 5G network to the heart of ground zero along with our frontliners at the moment noticed.\\r\\n<\\/p>\",\"排序\":\"1\"}', 30, 1, 1663316507),
  443. (165, 'page', 'data', '1,14,15', '页面管理.内容管理', 1, 1, '{\"ID\":\"31\",\"所属模块\":\"Info\",\"功能类型\":\"自定义\",\"标题\":\"Purchasing the PeaRhino system\",\"图片\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/7142b8354ca8a352b2b805f997c71549.png\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/7142b8354ca8a352b2b805f997c71549.png\\\" width=\\\"150\\\">\",\"内容\":\"The PeaRhino system availability in two networks of 4G or 5G\\r\\nPlease contact our PeaSafe team for more detailed information.\",\"排序\":\"9\"}', 31, 1, 1663316540),
  444. (166, 'page', 'module', '1,14,15', '页面管理.模块列表', 1, 1, '{\"ID\":\"18\",\"模块标题\":\"The PeaRhino system can be:\",\"模块标识\":\"service_list\",\"模块描述\":\"<p>\\r\\n\\t1、Rent \\r\\n<\\/p>\\r\\n<p>\\r\\n\\t2、Purchase \\r\\n<\\/p>\\r\\n<p>\\r\\n\\t3、Lease \\r\\n<\\/p>\\r\\n<p>\\r\\n\\t4、Subscribed as part of the contingency plan\\r\\n<\\/p>\",\"是否显示内容\":\"显示\",\"内容显示条数\":\"10\",\"所属页面\":\"Our Services\",\"排序\":\"49\"}', 18, 1, 1663316685),
  445. (167, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"18\",\"模块ID\":\"18\",\"模块标题\":\"The PeaRhino system can be:\",\"模块标识\":{\"更新前\":\"service_list\",\"更新后\":\"market\"},\"模块描述\":{\"更新前\":\"<p>\\r\\n\\t1、Rent \\r\\n<\\/p>\\r\\n<p>\\r\\n\\t2、Purchase \\r\\n<\\/p>\\r\\n<p>\\r\\n\\t3、Lease \\r\\n<\\/p>\\r\\n<p>\\r\\n\\t4、Subscribed as part of the contingency plan\\r\\n<\\/p>\",\"更新后\":\"<p>\\r\\n\\t1、Rent\\r\\n<\\/p>\\r\\n<p>\\r\\n\\t2、Purchase\\r\\n<\\/p>\\r\\n<p>\\r\\n\\t3、Lease\\r\\n<\\/p>\\r\\n<p>\\r\\n\\t4、Subscribed as part of the contingency plan\\r\\n<\\/p>\"},\"是否显示内容\":\"显示\",\"内容显示条数\":\"10\",\"所属页面\":\"Our Services\",\"排序\":\"49\"}', 18, 1, 1663316705),
  446. (168, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"18\",\"模块ID\":\"18\",\"模块标题\":\"The PeaRhino system can be:\",\"模块标识\":\"market\",\"模块描述\":{\"更新前\":\"<p>\\r\\n\\t1、Rent\\r\\n<\\/p>\\r\\n<p>\\r\\n\\t2、Purchase\\r\\n<\\/p>\\r\\n<p>\\r\\n\\t3、Lease\\r\\n<\\/p>\\r\\n<p>\\r\\n\\t4、Subscribed as part of the contingency plan\\r\\n<\\/p>\",\"更新后\":\"<p>\\r\\n\\t1.Rent\\r\\n<\\/p>\\r\\n<p>\\r\\n\\t2.Purchase\\r\\n<\\/p>\\r\\n<p>\\r\\n\\t3.Lease\\r\\n<\\/p>\\r\\n<p>\\r\\n\\t4.Subscribed as part of the contingency plan\\r\\n<\\/p>\"},\"是否显示内容\":\"显示\",\"内容显示条数\":\"10\",\"所属页面\":\"Our Services\",\"排序\":\"49\"}', 18, 1, 1663316748),
  447. (169, 'page', 'data', '1,14,15', '页面管理.内容管理', 1, 1, '{\"ID\":\"32\",\"所属模块\":\"Info\",\"功能类型\":\"自定义\",\"标题\":\"2\",\"图片\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/0aa45d56dee92f19ad654022eca4a30a.jpg\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/0aa45d56dee92f19ad654022eca4a30a.jpg\\\" width=\\\"150\\\">\",\"排序\":\"1\"}', 32, 1, 1663316880),
  448. (170, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"18\",\"模块ID\":\"18\",\"模块标题\":\"The PeaRhino system can be:\",\"模块标识\":\"market\",\"模块描述\":\"<p>\\r\\n\\t1.Rent\\r\\n<\\/p>\\r\\n<p>\\r\\n\\t2.Purchase\\r\\n<\\/p>\\r\\n<p>\\r\\n\\t3.Lease\\r\\n<\\/p>\\r\\n<p>\\r\\n\\t4.Subscribed as part of the contingency plan\\r\\n<\\/p>\",\"是否显示内容\":\"显示\",\"内容显示条数\":\"10\",\"所属页面\":\"Our Services\",\"内容功能类型\":\"自定义\",\"内容启用的字段\":\"内容,链接\",\"排序\":\"49\"}', 18, 1, 1663316910),
  449. (171, 'page', 'data', '1,14,15', '页面管理.内容管理', 1, 1, '{\"ID\":\"33\",\"所属模块\":\"The PeaRhino system can be:\",\"功能类型\":\"自定义\",\"标题\":\"1\",\"图片\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/0aa45d56dee92f19ad654022eca4a30a.jpg\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/0aa45d56dee92f19ad654022eca4a30a.jpg\\\" width=\\\"150\\\">\",\"排序\":\"1\"}', 33, 1, 1663316919),
  450. (172, 'page', 'data', '1,14,15', '页面管理.内容管理', 2, 1, '{\"ID\":\"31\",\"所属模块\":\"Info\",\"功能类型\":\"自定义\",\"标题\":\"Purchasing the PeaRhino system\",\"图片\":{\"更新前\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/7142b8354ca8a352b2b805f997c71549.png\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/7142b8354ca8a352b2b805f997c71549.png\\\" width=\\\"150\\\">\",\"更新后\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/2297fe42837979e0599dd75f6be1251b.jpg\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/2297fe42837979e0599dd75f6be1251b.jpg\\\" width=\\\"150\\\">\"},\"内容\":\"The PeaRhino system availability in two networks of 4G or 5G\\r\\nPlease contact our PeaSafe team for more detailed information.\",\"排序\":\"9\"}', 31, 1, 1663316950),
  451. (173, 'page', 'data', '1,14,15', '页面管理.内容管理', 2, 1, '{\"ID\":\"32\",\"所属模块\":\"Info\",\"功能类型\":\"自定义\",\"标题\":{\"更新前\":\"2\",\"更新后\":\"Leasing the PeaRhino system\"},\"图片\":{\"更新前\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/0aa45d56dee92f19ad654022eca4a30a.jpg\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/0aa45d56dee92f19ad654022eca4a30a.jpg\\\" width=\\\"150\\\">\",\"更新后\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/15\\/8e1d9b7c546278946c8221ae4f3cf7a1.jpg\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/15\\/8e1d9b7c546278946c8221ae4f3cf7a1.jpg\\\" width=\\\"150\\\">\"},\"内容\":{\"更新前\":\"\",\"更新后\":\"<p>\\r\\n\\tBuilding towers can be costly and time-consuming. PeaSafe offers a leasing program of the PeaRhino system for long-term or short-term with optional full maintenance services to resolve network disruption during construction. \\r\\n<\\/p>\\r\\n<p>\\r\\n\\t The PeaRhino system is also the perfect solution for any underserved region to avoid costly permanent structures.\\r\\n<\\/p>\"},\"排序\":{\"更新前\":\"1\",\"更新后\":\"7\"}}', 32, 1, 1663316991),
  452. (174, 'page', 'data', '1,14,15', '页面管理.内容管理', 1, 1, '{\"ID\":\"34\",\"所属模块\":\"Info\",\"功能类型\":\"自定义\",\"标题\":\"Subscriber as part of the contingency plan\",\"图片\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/15\\/8cda81fc7ad906927144235dda5fdf15.jpg\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/15\\/8cda81fc7ad906927144235dda5fdf15.jpg\\\" width=\\\"150\\\">\",\"内容\":\"<p>\\r\\n\\tMany regions throughout the world are prone to the unpredictable mother nature of disastrous forces. Tornadoes, hurricanes, wildfire, earthquakes, volcanoes, and\\/or Tsunami are among the ticking-time-bomb of unavoidable disasters. \\r\\n<\\/p>\\r\\n<p>\\r\\n\\t These regions can apply the PeaRhino system as a part of their contingency plan via subscribers. \\r\\n<\\/p>\\r\\n<p>\\r\\n\\tAs a subscriber, PeaSafe can implement a contingency plan with local agencies to act when the unthinkable strikes.\\r\\nPlease contact PeaSafe for system availability in your region(s).\\r\\n<\\/p>\",\"排序\":\"1\"}', 34, 1, 1663317019),
  453. (175, 'page', 'module', '1,14,15', '页面管理.模块列表', 1, 1, '{\"ID\":\"19\",\"模块标题\":\"Contact Us\",\"模块标识\":\"banner\",\"模块图片\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/56fa8614869b72a8763c408b128218a5.png\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/16\\/56fa8614869b72a8763c408b128218a5.png\\\" width=\\\"150\\\">\",\"是否显示内容\":\"显示\",\"内容显示条数\":\"10\",\"所属页面\":\"Contact Us\",\"排序\":\"1\"}', 19, 1, 1663317132),
  454. (176, 'page', 'module', '1,14,15', '页面管理.模块列表', 2, 1, '{\"ID\":\"6\",\"模块ID\":\"6\",\"模块标题\":\"Contact Us\",\"模块标识\":\"contact\",\"模块描述\":{\"更新前\":\"Are you Ready for a Better,more Productive Business?\",\"更新后\":\"Send Your Inquiries\"},\"是否显示内容\":\"显示\",\"内容显示条数\":\"10\",\"所属页面\":{\"更新前\":\"Home\",\"更新后\":\"Home,Contact Us\"},\"排序\":\"-1\"}', 6, 1, 1663317201),
  455. (177, 'main', 'config', '1,17,18', '基础设置.网站基础信息', 2, 1, '{\"ID\":\"1\",\"平台ID\":\"1\",\"网站名称\":\"Peasafe\",\"网站介绍\":\"PeasafePeasafe\",\"网站描述\":\"PeasafePeasafe\",\"网站LOGO\":\"<img layer-src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/08\\/2494cd430843ef1b8bfcc912beea910b.png\\\" src=\\\"http:\\/\\/192.168.33.10\\/peasafe\\/data\\/upload\\/1\\/2022\\/09\\/08\\/2494cd430843ef1b8bfcc912beea910b.png\\\" width=\\\"150\\\">\",\"客服电话\":{\"更新前\":\"15810090845\",\"更新后\":\"15810090811\"},\"联系邮箱\":\"recover-now@peasafe.com\",\"联系地址\":\"10130 Warner Ave, Unit C Fountain Valley, CA 92708\",\"Facebook链接\":\"#\",\"Twitter链接\":\"#\",\"LinkedIn链接\":\"#\",\"Instagram链接\":\"#\",\"底部信息\":\"©2021 PeaSafe. All rights reserved.\"}', 1, 1, 1663317308);
  456. -- --------------------------------------------------------
  457. --
  458. -- 表的结构 `peasafe_manage_menu`
  459. --
  460. DROP TABLE IF EXISTS `peasafe_manage_menu`;
  461. CREATE TABLE `peasafe_manage_menu` (
  462. `id` int(11) UNSIGNED NOT NULL COMMENT '菜单ID',
  463. `name` varchar(50) DEFAULT NULL COMMENT '菜单名称',
  464. `group_id` int(11) NOT NULL DEFAULT '1' COMMENT '选择分组',
  465. `menu_id` int(11) NOT NULL DEFAULT '-1' COMMENT '上级菜单',
  466. `menu` varchar(800) DEFAULT NULL COMMENT '上级菜单',
  467. `key` varchar(100) DEFAULT NULL COMMENT '菜单标识-用来标识菜单的唯一性,也可以输入项目名称',
  468. `link` varchar(150) DEFAULT NULL COMMENT '链接(或路径)',
  469. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序',
  470. `type` tinyint(1) NOT NULL DEFAULT '2' COMMENT '开启子菜单',
  471. `icon` varchar(100) DEFAULT NULL COMMENT '图标代码-请<A HREF="HTTPS://WWW.LAYUI.ME/DOC/ELEMENT/ICON.HTML" TARGET="_BLANK">点此</A>查看图标代码',
  472. `fast` tinyint(1) NOT NULL DEFAULT '2' COMMENT '是否快捷菜单',
  473. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  474. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  475. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  476. --
  477. -- 转存表中的数据 `peasafe_manage_menu`
  478. --
  479. INSERT INTO `peasafe_manage_menu` (`id`, `name`, `group_id`, `menu_id`, `menu`, `key`, `link`, `reorder`, `type`, `icon`, `fast`, `state`, `cdate`) VALUES
  480. (1, '主页', 1, -1, '-1', 'console', 'console:主页', 10000, 2, 'layui-icon-home', 2, 1, 1662543890),
  481. (2, '控制台', 1, 1, '1', 'console.index', 'http://192.168.33.10/peasafe/package/manage/?l=console', 10, 2, 'glyphicon glyphicon-folder-close', 2, 1, 1662543890),
  482. (3, '后台设置', 2, -1, '-1', 'manage', '/share/lib/php/dever_package/manage/:后台设置', -100, 2, 'glyphicon glyphicon-wrench layui-icon-set-sm', 2, 1, 1662543890),
  483. (4, '管理账户设置', 2, 3, '3', 'manage.admin', 'project/database/list?project=manage&table=admin&menu=manage&search_option_state=1', 9, 2, 'glyphicon glyphicon-folder-close', 2, 1, 1662543890),
  484. (5, '接口列表', 2, 3, '3', 'manage.api', 'project/database/list?project=manage&table=api&menu=manage&search_option_state=1', 1, 2, 'glyphicon glyphicon-folder-close', 2, 1, 1662543890),
  485. (6, '个性化配置', 2, 3, '3', 'manage.config', 'project/database/list?project=manage&table=config&menu=manage&search_option_state=1', 10, 2, 'glyphicon glyphicon-folder-close', 2, 1, 1662543890),
  486. (7, '计划任务', 2, 3, '3', 'manage.cron', 'project/database/list?project=manage&table=cron&menu=manage&search_option_state=1', 1, 2, 'glyphicon glyphicon-folder-close', 2, 1, 1662543890),
  487. (8, '帮助管理', 2, 3, '3', 'manage.help', 'project/database/list?project=manage&table=help&menu=manage&search_option_state=1', 6, 2, 'glyphicon glyphicon-folder-close', 2, 1, 1662543890),
  488. (9, '管理操作日志', 2, 3, '3', 'manage.log', 'project/database/list?project=manage&table=log&menu=manage&search_option_state=1', 1, 2, 'glyphicon glyphicon-folder-close', 2, 1, 1662543890),
  489. (10, '管理菜单设置', 2, 3, '3', 'manage.menu', 'project/database/list?project=manage&table=menu&menu=manage&search_option_state=1', 2, 2, 'glyphicon glyphicon-folder-close', 2, 1, 1662543890),
  490. (11, '后台公告管理', 2, 3, '3', 'manage.notice', 'project/database/list?project=manage&table=notice&menu=manage&search_option_state=1', 7, 2, 'glyphicon glyphicon-folder-close', 2, 1, 1662543890),
  491. (12, '字段记录表', 2, 3, '3', 'manage.opt', 'project/database/list?project=manage&table=opt&menu=manage&search_option_state=1', 1, 2, 'glyphicon glyphicon-folder-close', 2, 1, 1662543890),
  492. (13, '管理角色设置', 2, 3, '3', 'manage.role', 'project/database/list?project=manage&table=role&menu=manage&search_option_state=1', 8, 2, 'glyphicon glyphicon-folder-close', 2, 1, 1662543890),
  493. (14, '页面管理', 1, -1, '-1', 'page', '/share/lib/php/dever_package/page/:页面管理', 199, 2, 'glyphicon glyphicon-tower layui-icon-template-1', 2, 1, 1662544031),
  494. (15, '模块列表', 1, 14, '14', 'page.module', 'project/database/list?project=page&table=module&menu=page&search_option_state=1', 2, 2, 'glyphicon glyphicon-folder-close', 2, 1, 1662544031),
  495. (16, '页面列表', 1, 14, '14', 'page.page', 'project/database/list?project=page&table=page&menu=page&search_option_state=1', 1, 2, 'glyphicon glyphicon-folder-close', 2, 1, 1662544031),
  496. (17, '基础设置', 1, -1, '-1', 'main', '/www/peasafe/main/:基础设置', 98, 2, 'glyphicon glyphicon-tower layui-icon-component', 2, 1, 1662615706),
  497. (18, '网站基础信息', 1, 17, '17', 'main.config', 'project/database/list?project=main&table=config&menu=main&search_option_state=1', -10, 2, 'glyphicon glyphicon-folder-close', 2, 1, 1662615706),
  498. (19, '联系我们', 1, 17, '17', 'main.contact', 'project/database/list?project=main&table=contact&menu=main&search_option_state=1', -8, 2, 'glyphicon glyphicon-folder-close', 2, 1, 1662615706),
  499. (20, '资源库', 2, -1, '-1', 'upload', '/share/lib/php/dever_package/upload/:资源库', -90, 2, 'glyphicon glyphicon-upload layui-icon-picture', 2, 1, 1662627740),
  500. (21, '资源分类', 2, 20, '20', 'upload.cate', 'project/database/list?project=upload&table=cate&menu=upload&search_option_state=1', 99, 2, 'glyphicon glyphicon-folder-close', 2, 1, 1662627740),
  501. (22, '资源列表', 2, 20, '20', 'upload.file', 'project/database/list?project=upload&table=file&menu=upload&search_option_state=1', 9, 2, 'glyphicon glyphicon-folder-close', 2, 1, 1662627740),
  502. (23, '资源配置', 2, 20, '20', 'upload.upload', 'project/database/list?project=upload&table=upload&menu=upload&search_option_state=1', 100, 2, 'glyphicon glyphicon-folder-close', 2, 1, 1662627740),
  503. (24, '云端配置', 2, 20, '20', 'upload.yun', 'project/database/list?project=upload&table=yun&menu=upload&search_option_state=1', 1, 2, 'glyphicon glyphicon-folder-close', 2, 1, 1662627740),
  504. (25, '内容管理', 1, 14, '14', 'page.data', 'project/database/list?project=page&table=data&menu=page&search_option_state=1', 20, 2, 'glyphicon glyphicon-folder-close', 2, 1, 1662686326),
  505. (26, '网站菜单管理', 1, 17, '17', 'main.menu', 'project/database/list?project=main&table=menu&menu=main&search_option_state=1', -9, 2, 'glyphicon glyphicon-folder-close', 2, 1, 1662686326);
  506. -- --------------------------------------------------------
  507. --
  508. -- 表的结构 `peasafe_manage_menu_func`
  509. --
  510. DROP TABLE IF EXISTS `peasafe_manage_menu_func`;
  511. CREATE TABLE `peasafe_manage_menu_func` (
  512. `id` int(11) UNSIGNED NOT NULL COMMENT '功能ID',
  513. `name` varchar(50) DEFAULT NULL COMMENT '功能名称',
  514. `key` varchar(100) DEFAULT NULL COMMENT '功能标识',
  515. `menu_id` int(11) NOT NULL DEFAULT '1' COMMENT '菜单ID',
  516. `reorder` int(11) NOT NULL DEFAULT '100' COMMENT '排序-数字越小越靠前',
  517. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  518. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  519. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  520. -- --------------------------------------------------------
  521. --
  522. -- 表的结构 `peasafe_manage_menu_group`
  523. --
  524. DROP TABLE IF EXISTS `peasafe_manage_menu_group`;
  525. CREATE TABLE `peasafe_manage_menu_group` (
  526. `id` int(11) UNSIGNED NOT NULL COMMENT '分组ID',
  527. `name` varchar(50) DEFAULT NULL COMMENT '分组名称',
  528. `icon` varchar(100) DEFAULT NULL COMMENT '图标代码-请<A HREF="HTTPS://WWW.LAYUI.COM/DOC/ELEMENT/ICON.HTML" TARGET="_BLANK">点此</A>查看图标代码',
  529. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序',
  530. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  531. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  532. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  533. --
  534. -- 转存表中的数据 `peasafe_manage_menu_group`
  535. --
  536. INSERT INTO `peasafe_manage_menu_group` (`id`, `name`, `icon`, `reorder`, `state`, `cdate`) VALUES
  537. (1, '基本功能', NULL, 1, 1, 1662543890),
  538. (2, '平台系统管理', 'glyphicon glyphicon-folder-close', -10, 1, 1662543890);
  539. -- --------------------------------------------------------
  540. --
  541. -- 表的结构 `peasafe_manage_notice`
  542. --
  543. DROP TABLE IF EXISTS `peasafe_manage_notice`;
  544. CREATE TABLE `peasafe_manage_notice` (
  545. `id` int(11) UNSIGNED NOT NULL COMMENT '公告ID',
  546. `name` varchar(32) DEFAULT NULL COMMENT '公告标题',
  547. `config` int(11) NOT NULL DEFAULT '1' COMMENT '后台配置',
  548. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
  549. `content` text COMMENT '内容',
  550. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  551. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  552. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  553. -- --------------------------------------------------------
  554. --
  555. -- 表的结构 `peasafe_manage_opt`
  556. --
  557. DROP TABLE IF EXISTS `peasafe_manage_opt`;
  558. CREATE TABLE `peasafe_manage_opt` (
  559. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  560. `project` varchar(30) DEFAULT NULL COMMENT '项目',
  561. `table` varchar(30) DEFAULT NULL COMMENT '数据表-请输入表的英文名',
  562. `method` varchar(32) DEFAULT NULL COMMENT '所属方法名',
  563. `col` varchar(500) DEFAULT NULL COMMENT '使用的字段',
  564. `col_index` varchar(500) DEFAULT NULL COMMENT '建立索引的字段',
  565. `version` int(11) NOT NULL DEFAULT '0' COMMENT '版本号',
  566. `num` int(11) NOT NULL DEFAULT '0' COMMENT '执行次数',
  567. `time` varchar(30) DEFAULT NULL COMMENT '执行时间',
  568. `status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '是否建立索引',
  569. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '数据是否存在',
  570. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  571. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  572. -- --------------------------------------------------------
  573. --
  574. -- 表的结构 `peasafe_manage_role`
  575. --
  576. DROP TABLE IF EXISTS `peasafe_manage_role`;
  577. CREATE TABLE `peasafe_manage_role` (
  578. `id` int(11) UNSIGNED NOT NULL COMMENT '角色ID',
  579. `name` varchar(24) DEFAULT NULL COMMENT '角色名',
  580. `role_id` int(11) NOT NULL DEFAULT '-1' COMMENT '上级角色',
  581. `self` tinyint(1) NOT NULL DEFAULT '2' COMMENT '是否只能管理自己发布的内容-请在需要此项权限的表中增加[数据查询时影响的字段]',
  582. `col_select` varchar(30) DEFAULT NULL COMMENT '数据查询时影响的字段-该项影响数据查询,如果在表中增加该字段,则后台在查询数据时自动查询当前管理员的ID下的数据,多个用逗号隔开,与[是否只能管理自己发布的内容]相关',
  583. `col_insert` varchar(30) DEFAULT NULL COMMENT '数据插入时影响的字段-该项影响数据插入,如果在表中增加该字段,则后台操作时自动为该字段赋值为当前管理员的ID,多个用逗号隔开',
  584. `col_update` varchar(30) DEFAULT NULL COMMENT '数据更新时影响的字段-该项影响数据更新,如果在表中增加该字段,则后台操作时自动为该字段赋值为当前管理员的ID,多个用逗号隔开',
  585. `oper` varchar(24) DEFAULT NULL COMMENT '通用操作权限',
  586. `auth` text COMMENT '功能权限',
  587. `top` text COMMENT '数据权限',
  588. `auth_data` text COMMENT '数据权限',
  589. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序-数值越大越靠前',
  590. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  591. `status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  592. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  593. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  594. --
  595. -- 转存表中的数据 `peasafe_manage_role`
  596. --
  597. INSERT INTO `peasafe_manage_role` (`id`, `name`, `role_id`, `self`, `col_select`, `col_insert`, `col_update`, `oper`, `auth`, `top`, `auth_data`, `reorder`, `state`, `status`, `cdate`) VALUES
  598. (1, '系统管理员', -1, 2, 'admin', 'admin', 'admin', '1,2,3,4,5', 'all', NULL, NULL, 1, 1, 1, 1662543890),
  599. (2, '普通管理员', -1, 2, 'admin', 'admin', 'admin', '1,2,3,4,5', '', NULL, NULL, 1, 1, 1, 1662543890);
  600. -- --------------------------------------------------------
  601. --
  602. -- 表的结构 `peasafe_page_col`
  603. --
  604. DROP TABLE IF EXISTS `peasafe_page_col`;
  605. CREATE TABLE `peasafe_page_col` (
  606. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  607. `name` varchar(32) DEFAULT NULL COMMENT '字段名称',
  608. `key` varchar(32) DEFAULT NULL COMMENT '字段标识',
  609. `desc` varchar(200) DEFAULT NULL COMMENT '字段描述',
  610. `type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '类型',
  611. `pic` varchar(20) DEFAULT NULL COMMENT '图片尺寸提醒-请直接输入尺寸,如100*100',
  612. `option` varchar(1000) DEFAULT NULL COMMENT '可选项-每行一个选项,多个直接换行',
  613. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
  614. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  615. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
  616. `is_option` tinyint(1) NOT NULL DEFAULT '1' COMMENT '是否必填'
  617. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  618. --
  619. -- 转存表中的数据 `peasafe_page_col`
  620. --
  621. INSERT INTO `peasafe_page_col` (`id`, `name`, `key`, `desc`, `type`, `pic`, `option`, `reorder`, `state`, `cdate`, `is_option`) VALUES
  622. (1, '标题', 'name', '标题', 1, NULL, NULL, 1, 1, 1662544044, 1),
  623. (2, '图片', 'pic', '图片', 4, '', NULL, 1, 1, 1662544044, 2),
  624. (3, '链接', 'link', '链接', 1, NULL, NULL, 1, 1, 1662544044, 1),
  625. (4, '内容', 'content', '内容', 2, '', NULL, 1, 1, 1662688841, 1),
  626. (5, '内容', 'editor', '编辑器内容', 3, '', NULL, 1, 1, 1663313202, 1);
  627. -- --------------------------------------------------------
  628. --
  629. -- 表的结构 `peasafe_page_data`
  630. --
  631. DROP TABLE IF EXISTS `peasafe_page_data`;
  632. CREATE TABLE `peasafe_page_data` (
  633. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  634. `module_id` int(11) NOT NULL DEFAULT '1' COMMENT '所属模块',
  635. `type` int(11) NOT NULL DEFAULT '-1' COMMENT '功能类型',
  636. `type_id` int(11) NOT NULL DEFAULT '0' COMMENT '关联数据',
  637. `col_1` varchar(1000) DEFAULT NULL COMMENT '标题',
  638. `col_2` varchar(1000) DEFAULT NULL COMMENT '图片',
  639. `col_3` varchar(1000) DEFAULT NULL COMMENT '链接',
  640. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
  641. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  642. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
  643. `col_4` varchar(1000) NOT NULL COMMENT '内容',
  644. `col_5` varchar(1000) NOT NULL COMMENT '编辑器内容'
  645. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  646. --
  647. -- 转存表中的数据 `peasafe_page_data`
  648. --
  649. INSERT INTO `peasafe_page_data` (`id`, `module_id`, `type`, `type_id`, `col_1`, `col_2`, `col_3`, `reorder`, `state`, `cdate`, `col_4`, `col_5`) VALUES
  650. (1, 1, -1, 0, 'Recover from Disaster Now', '{uploadRes}1/2022/09/09/b6c31d01d41c9e1714958f9c56d01d8f.png', '#', 1, 2, 1662688813, 'PeaSafe answers to unforeseen disastrous events to avoid unwanted halt of communication', ''),
  651. (2, 2, -1, 0, 'The PeaRhino Introduction', '{uploadRes}1/2022/09/13/f83a3adb5c94d83a70fce80926b20271.jpg', '', 1, 1, 1663033334, '11', ''),
  652. (3, 3, -1, 0, 'Congestion overload', '{uploadRes}1/2022/09/14/f3ccdd27d2000e3f9255a7e3e2c48800.jpg', '', 10, 1, 1663141513, 'During all disasters, countless calls cannot go through due to network failure and/or congestion. This only adds to the chaos and generates further crisis. The surge of demand overwhelmed most of any current network. For earthquakes, landslides, volcanoes, wildfire, tsunami, and many other disaster events, most major Telco can only apply their “disaster management” plan by prioritizing network traffic. Even then, the solution is cut short for others who are trying to cope with the situation and are not able to reach their loved ones. \r\n', ''),
  653. (4, 3, -1, 0, 'Disruption of Infrastructure', '{uploadRes}1/2022/09/14/156005c5baf40ff51a327f1c34f2975b.jpg', '', 8, 1, 1663141534, 'All telecommunication networks always rely on local and regional technical systems to maintain functional operation. Once the local and regional systems fail during a disastrous event, telecommunication networks would equally suffer. \r\n', ''),
  654. (5, 3, -1, 0, 'Physical Destruction', '{uploadRes}1/2022/09/14/799bad5a3b514f096e69bbc4a7896cd9.jpg', '', 6, 1, 1663141552, 'Among other disruptions, physical destruction inflicts the most harm to the telecommunication network. Major funding equals a time-consuming process to rebuild. Hence, the physical destruction is always the most severe of all accounted disastrous events. The collapse of towers, buildings, bridges, severe cables takes months or years to recoup. \r\n', ''),
  655. (6, 4, -1, 0, 't', '{uploadRes}1/2022/09/14/10fb15c77258a991b0028080a64fb42d.png', '', 10, 1, 1663148906, '22', ''),
  656. (7, 4, -1, 0, '2', '{uploadRes}1/2022/09/14/fb5c81ed3a220004b71069645f112867.png', '', 1, 1, 1663148914, '2', ''),
  657. (8, 5, -1, 0, 'Rent', '{uploadRes}1/2022/09/15/18e2999891374a475d0687ca9f989d83.jpg', '', 9, 1, 1663205938, '', ''),
  658. (9, 5, -1, 0, 'Purchase', '{uploadRes}1/2022/09/15/fe5df232cafa4c4e0f1a0294418e5660.jpg', '', 8, 1, 1663205949, '', ''),
  659. (10, 5, -1, 0, 'Lease', '{uploadRes}1/2022/09/15/8cda81fc7ad906927144235dda5fdf15.jpg', '', 7, 1, 1663205958, '', ''),
  660. (11, 5, -1, 0, 'Subscribed', '{uploadRes}1/2022/09/15/30e62fddc14c05988b44e7c02788e187.jpg', '', 5, 1, 1663205969, '', ''),
  661. (12, 8, -1, 0, '1', '{uploadRes}1/2022/09/15/8e1d9b7c546278946c8221ae4f3cf7a1.jpg', '', 1, 1, 1663233264, '', ''),
  662. (13, 8, -1, 0, '2', '{uploadRes}1/2022/09/15/32477b9e4abfddc67181f46bb401285a.jpg', '', 1, 1, 1663233272, '', ''),
  663. (14, 9, -1, 0, 'Rapid', 'http://192.168.33.10/peasafe/data/upload/1/2022/09/16/0aa45d56dee92f19ad654022eca4a30a.jpg.cr_173_14_449_380_0_1_1.jpg', '', 10, 1, 1663235416, 'PeaRhino is pre-built and set up to be commissioned immediately, it is a rapid solution to any frontline team.', ''),
  664. (15, 9, -1, 0, 'Hi-speed', 'http://192.168.33.10/peasafe/data/upload/1/2022/09/16/e58fdbedc1d208ba25baacc0dc7ec622.jpg.cr_137_6_468_364_0_1_1.jpg', '', 9, 1, 1663235443, 'PeaRhino is a Self-Contained Site product, offers Hi-speed telecommunication up to 5G and beyond.', ''),
  665. (16, 9, -1, 0, 'Intelligent', 'http://192.168.33.10/peasafe/data/upload/1/2022/09/16/2297fe42837979e0599dd75f6be1251b.jpg.cr_175_15_462_403_0_1_1.jpg', '', 8, 1, 1663235455, 'PeaRhino is AI (artificial intelligence) that features an independent service, private network, satellite, and data of 3G, 4G, 4G LTE, 5G, and beyond. PeaRhino can be integrated to be any network operation.', ''),
  666. (17, 9, -1, 0, 'Network', '', '', 6, 1, 1663235465, 'PeaRhino performs faster, smoother, and reliable networks. PeaRhino is suitable worldwide due to its cost-effectiveness, compatibility, security, versatility, and transportability of a telecommunication network.\r\n\r\n', ''),
  667. (18, 9, -1, 0, 'Operation', '', '', 5, 1, 1663297035, 'The PeaRhino System operation is attractive because of its capabilities:\r\n<br />1、Transportable\r\n<br />2、Versatility\r\n<br />3、Contingency Application', ''),
  668. (19, 10, -1, 0, 'Transportable', '', '', 10, 1, 1663299955, 'A Contingency Plan is not only necessary to police, fire, EMS, hospitals, and FEMA, it is crucial to protect and maintain communication during any major disaster. PeaSafe is the cost-saving and safe solution to subscribers. This option can cut costs and yield worry-free maintenance of the system. The subscribers have a piece of mind that we can deploy and re-connect their data and communication when the situation arises.\r\n\r\n', ''),
  669. (20, 10, -1, 0, 'Versatility', '', '', 9, 1, 1663299968, 'PeaRhino is versatile and can fill the gap of under-served areas in need of bandwidth solutions. PeaRhino provides rapid deployment of cellular and Wifi communication to lesser developed regions at an affordable solution. These communities all over the world don’t have to rely on years of development of today’s technology. Their schools, townships, police, fire, and hospital need cellular/Wifi today, not a decade from now. Furthermore, PeaRhino is attractive worldwide because of its compatibility with 3G, 4G, 4G LTE and upgrade-ready for beyond.\r\n\r\n', ''),
  670. (21, 10, -1, 0, 'Contingency Plan', '', '', 8, 1, 1663299983, 'A Contingency Plan is not only necessary to police, fire, EMS, hospitals, and FEMA, it is crucial to protect and maintain communication during any major disaster. PeaRhino is available to support subscribers. This option can cut costs and yield worry-free maintenance of the system. The subscribers have a piece of mind that we can deploy and re-connect their data and communication when the situation arises.\r\n\r\n', ''),
  671. (22, 12, -1, 0, 'Congestion Overload', '{uploadRes}1/2022/09/14/f3ccdd27d2000e3f9255a7e3e2c48800.jpg', '', 10, 1, 1663311727, '', ''),
  672. (23, 12, -1, 0, 'Disruption of Infrastructure', '{uploadRes}1/2022/09/14/156005c5baf40ff51a327f1c34f2975b.jpg', '', 9, 1, 1663311761, '', ''),
  673. (24, 12, -1, 0, 'Physical Destruction', '{uploadRes}1/2022/09/16/0aa45d56dee92f19ad654022eca4a30a.jpg', '', 1, 1, 1663311779, '', ''),
  674. (25, 13, -1, 0, 'Congestion Overload', '{uploadRes}1/2022/09/16/2297fe42837979e0599dd75f6be1251b.jpg', '', 10, 1, 1663313171, 'During all disasters, countless calls cannot go through due to network failure and/or congestion. This only adds to the chaos and generates further crisis. The surge of demand overwhelmed most of any current network. For earthquakes, landslides, volcanoes, wildfire, tsunami, and many other disaster events, most major Telco can only apply their “disaster management” plan by prioritizing network traffic. Even then, the solution is cut short for others who are trying to cope with the situation and are not able to reach their loved ones.\r\n\r\nPeaSafe Disaster Recovery with PeaRhino is compact, transportable, ready for rapid deployment to resolve network congestion overload.', '<p>\r\n During all disasters, countless calls cannot go through due to network failure and/or congestion. This only adds to the chaos and generates further crisis. The surge of demand overwhelmed most of any current network. For earthquakes, landslides, volcanoes, wildfire, tsunami, and many other disaster events, most major Telco can only apply their “disaster management” plan by prioritizing network traffic. Even then, the solution is cut short for others who are trying to cope with the situation and are not able to reach their loved ones. \r\n</p>\r\n<p>\r\n PeaSafe Disaster Recovery with PeaRhino is compact, transportable, ready for rapid deployment to resolve network congestion overload.\r\n</p>'),
  675. (26, 13, -1, 0, 'Disruption of Infrastructure', '{uploadRes}1/2022/09/16/e58fdbedc1d208ba25baacc0dc7ec622.jpg', '', 1, 1, 1663313333, '', '<p>\r\n All telecommunication networks always rely on local and regional technical systems to maintain functional operation. Once the local and regional systems fail during a disastrous event, telecommunication networks would equally suffer. \r\n</p>\r\n<p>\r\n Besides electrical surge or loss, many telecommunication equipment can easily be out of commission due to earthquakes, hurricanes, tornadoes, or floods. Waiting for the clean-up and installation of new equipment is lengthy and unpredictable. \r\n</p>\r\n<p>\r\n PeaSafe Disaster Recovery provides PeaRhino to establish communication and data. PeaRhino is ready to deploy and commission within hours. Its mobility is the advantage to recover communication lost right in the center of ground-zero.\r\n</p>'),
  676. (27, 13, -1, 0, 'Physical Destruction', '{uploadRes}1/2022/09/16/0aa45d56dee92f19ad654022eca4a30a.jpg', '', 1, 1, 1663314270, '', '<p>\r\n Among other disruptions, physical destruction inflicts the most harm to the telecommunication network. Major funding equals a time-consuming process to rebuild. Hence, the physical destruction is always the most severe of all accounted disastrous events. The collapse of towers, buildings, bridges, severe cables takes months or years to recoup. \r\n</p>\r\n<p>\r\n PeaSafe Disaster Recovery with PeaRhino is versatile and reliable to play a temporary replacement role of the destroyed network(s). Because of its mobility, the PeaSafe Disaster Recovery with PeaRhino can be relocated as needed to meet the immediate demand within the disastrous area.\r\n</p>'),
  677. (28, 15, -1, 0, '2', '{uploadRes}1/2022/09/15/8e1d9b7c546278946c8221ae4f3cf7a1.jpg', '', 1, 1, 1663316069, '', 'PeaSafe Disaster Recovery with PeaRhinos can re-connect our front-line teams. From a plane crash site to a hurricane zone, from a mudslide to an earthquake, and/or from a wildfire to a tsunami, PeaSafe can partner up with local government agencies to provide a telecommunication network during the disastrous event. Police, Fire, EMS, Hospital, and FEMA are among many agencies that our system can provide telecommunication network solutions as soon as it deploys right in the heart of ground zero.'),
  678. (29, 15, -1, 0, '1', '{uploadRes}1/2022/09/15/30e62fddc14c05988b44e7c02788e187.jpg', '', 1, 1, 1663316186, '', ''),
  679. (30, 17, -1, 0, 'Renting the PeaRhino system', '{uploadRes}1/2022/09/16/e58fdbedc1d208ba25baacc0dc7ec622.jpg', '', 10, 1, 1663316507, '', '<p>\r\n PeaSafe provides communication and data services of 4G or 5G network to rapidly recover network disruption, network loss, or network replacement during a disastrous event. \r\n</p>\r\n<p>\r\n With the PeaRhino system, our PeaSafe team is always ready to transport, deploy, and commission 4G or 5G network to the heart of ground zero along with our frontliners at the moment noticed.\r\n</p>'),
  680. (31, 17, -1, 0, 'Purchasing the PeaRhino system', '{uploadRes}1/2022/09/16/2297fe42837979e0599dd75f6be1251b.jpg', '', 9, 1, 1663316540, '', 'The PeaRhino system availability in two networks of 4G or 5G\r\nPlease contact our PeaSafe team for more detailed information.'),
  681. (32, 17, -1, 0, 'Leasing the PeaRhino system', '{uploadRes}1/2022/09/15/8e1d9b7c546278946c8221ae4f3cf7a1.jpg', '', 7, 1, 1663316880, '', '<p>\r\n Building towers can be costly and time-consuming. PeaSafe offers a leasing program of the PeaRhino system for long-term or short-term with optional full maintenance services to resolve network disruption during construction. \r\n</p>\r\n<p>\r\n  The PeaRhino system is also the perfect solution for any underserved region to avoid costly permanent structures.\r\n</p>'),
  682. (33, 18, -1, 0, '1', '{uploadRes}1/2022/09/16/0aa45d56dee92f19ad654022eca4a30a.jpg', '', 1, 1, 1663316919, '', ''),
  683. (34, 17, -1, 0, 'Subscriber as part of the contingency plan', '{uploadRes}1/2022/09/15/8cda81fc7ad906927144235dda5fdf15.jpg', '', 1, 1, 1663317019, '', '<p>\r\n Many regions throughout the world are prone to the unpredictable mother nature of disastrous forces. Tornadoes, hurricanes, wildfire, earthquakes, volcanoes, and/or Tsunami are among the ticking-time-bomb of unavoidable disasters. \r\n</p>\r\n<p>\r\n  These regions can apply the PeaRhino system as a part of their contingency plan via subscribers. \r\n</p>\r\n<p>\r\n As a subscriber, PeaSafe can implement a contingency plan with local agencies to act when the unthinkable strikes.\r\nPlease contact PeaSafe for system availability in your region(s).\r\n</p>');
  684. -- --------------------------------------------------------
  685. --
  686. -- 表的结构 `peasafe_page_func`
  687. --
  688. DROP TABLE IF EXISTS `peasafe_page_func`;
  689. CREATE TABLE `peasafe_page_func` (
  690. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  691. `name` varchar(32) DEFAULT NULL COMMENT '功能名称',
  692. `type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '功能类型',
  693. `api` varchar(200) DEFAULT NULL COMMENT '功能定义-如果是接口类型,这里可以直接输入HTTP接口地址,也可以使用DEVER接口,如果接口返回一条数据,就为单条,如果是多条,就是列表;如果是特殊类型,直接输入类型的值即可',
  694. `col` text COMMENT '关联字段',
  695. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
  696. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  697. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  698. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  699. -- --------------------------------------------------------
  700. --
  701. -- 表的结构 `peasafe_page_module`
  702. --
  703. DROP TABLE IF EXISTS `peasafe_page_module`;
  704. CREATE TABLE `peasafe_page_module` (
  705. `id` int(11) UNSIGNED NOT NULL COMMENT '模块ID',
  706. `name` varchar(60) DEFAULT NULL COMMENT '模块标题',
  707. `key` varchar(60) DEFAULT NULL COMMENT '模块标识',
  708. `desc` varchar(2000) DEFAULT NULL COMMENT '模块描述',
  709. `num` int(11) NOT NULL DEFAULT '10' COMMENT '内容显示条数-为空或小于0则取默认值10,只对前台有效,当有分页时,则为每页显示的条数',
  710. `page_id` varchar(100) DEFAULT NULL COMMENT '所属页面',
  711. `func` varchar(300) DEFAULT NULL COMMENT '功能类型',
  712. `col` varchar(300) DEFAULT NULL COMMENT '启用的字段',
  713. `col_pic` varchar(500) DEFAULT NULL COMMENT '图片尺寸提醒-请直接输入提醒的文字即可,如100*100,如果有多个图片字段,请用换行隔开',
  714. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)',
  715. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  716. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
  717. `content` tinyint(1) NOT NULL DEFAULT '1' COMMENT '是否显示内容',
  718. `pic` varchar(150) NOT NULL COMMENT '模块图片'
  719. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  720. --
  721. -- 转存表中的数据 `peasafe_page_module`
  722. --
  723. INSERT INTO `peasafe_page_module` (`id`, `name`, `key`, `desc`, `num`, `page_id`, `func`, `col`, `col_pic`, `reorder`, `state`, `cdate`, `content`, `pic`) VALUES
  724. (1, 'Recover from Disaster Now', 'banner', 'PeaSafe answers to unforeseen disastrous events to avoid unwanted halt of communication.', 1, '1', '-1', '4,2,1', '', 100, 1, 1662627871, 2, '{uploadRes}1/2022/09/15/e18ec2c93dc39543b30bcb98139ae95d.jpg'),
  725. (2, 'Our Technology', 'tech', '<p>\r\n At PeaSafe, we set a high standard to provide our frontliners with the best equipment and technology for Disaster Recovery. When an unpredicted disastrous event strikes, communication plays a vital role to respond ASAP to save lives.\r\n</p>\r\n<p>\r\n PeaSafe is the go-to name to provide the latest telecommunication services. PeaSafe is authorized to introduces the PeaRhino System from Peatalk which allows a vertical, rapid deploy tower that is easy to use, all self-contained, and is not restricted to existing tower locations. This flexibility makes it attractive and cost-effective for any disaster recovery program from local to all over the world.\r\n</p>', 1, '1', '-1', '2,1', '', 99, 1, 1662718702, 1, ''),
  726. (3, 'Our Readiness', 'readiness', 'The hidden unaware issues of domestic or abroad preparedness are more common than expected. The modern civilization of infrastructures continues to improve reliability, capability, and interoperability, but always lacks immediate response when disasters occurred', 10, '1', '-1', '2,1', '', 98, 1, 1663060425, 1, ''),
  727. (4, 'Our Markets', 'market', '<p>\r\n Communities are torn apart when disaster hits. Our frontliners risk their lives to rescue and save lives. But without communication, the daunting task would be impossible.\r\n</p>\r\n<p>\r\n <br />\r\n</p>\r\n<p>\r\n PeaSafe Disaster Recovery with PeaRhinos can re-connect our front-line teams. From a plane crash site to a hurricane zone, from a mudslide to an earthquake, and/or from a wildfire to a tsunami, PeaSafe can partner up with local government agencies to provide a telecommunication network during the disastrous event. Police, Fire, EMS, Hospital, and FEMA are among many agencies that our system can provide telecommunication network solutions as soon as it deploys right in the heart of ground zero.\r\n</p>', 2, '1', '-1', '2,1', '', 97, 1, 1663145585, 1, ''),
  728. (5, 'Our Services', 'service', '<span style=\"color:#333333;font-family:Poppins;font-size:16px;text-align:center;white-space:normal;background-color:#FFFFFF;\">Our fleet of PeaRhinos are updated with routine services and maintenances.</span><br style=\"box-sizing:border-box;color:#333333;font-family:Poppins;font-size:16px;text-align:center;white-space:normal;background-color:#FFFFFF;\" />\r\n<span style=\"color:#333333;font-family:Poppins;font-size:16px;text-align:center;white-space:normal;background-color:#FFFFFF;\">PeaRhinos are on stand-by and ready to launch into action.</span>', 4, '1', '-1', '2,1', '', 96, 1, 1663150685, 1, ''),
  729. (6, 'Contact Us', 'contact', 'Send Your Inquiries', 10, '1,3', NULL, NULL, '', -1, 1, 1663208376, 1, ''),
  730. (7, 'Our Technology', 'banner', 'At PeaSafe, we set a high standard to provide our frontliners with the best equipment and technology for Disaster Recovery. When an unpredicted disastrous event strikes, communication plays a vital role to respond ASAP to save lives. PeaSafe is the go-to name to provide Disaster Recovery telecommunication services. PeaSafe proudly introduces the PeaRhinos. The PeaRhinos allow a vertical, rapid deployed tower that is easy to use, all self-contained and are not restricted to existing tower locations. This flexibility makes them attractive and cost-effective for any disaster recovery program from local to all over the world.', 10, '2', NULL, NULL, '', 80, 1, 1663232612, 1, '{uploadRes}1/2022/09/15/3b82b6e2e9f62bcaac7bb7dfe0be9c18.jpg'),
  731. (8, 'PeaSafe ', 'market', '<p>\r\n PeaSafe is extremely confident in bringing “PeaRhino” to serve Disaster Recovery.\r\n</p>\r\n<p>\r\n An unforeseen natural disastrous event can change a community overnight. Critical moments to respond can quickly prevent a recovery to a halt and save lives. This is why PeaRhino for Disaster Recovery can support frontline workers to maintain their communication. In the event of a plane crash in a remote area, wildfire, or severe weather that can cut off power lines and cell towers, our transportable Cell sites/networks can provide communication to our frontline workers such as police, fire, EMS, hospitals, and FEMA.\r\n</p>', 2, '2', '-1', '2,1', '', 79, 1, 1663232815, 1, ''),
  732. (9, ' The PeaRhino Introduction', 'service_list', '<img src=\"{uploadRes}1/2022/09/15/296a0722807ad976a7f40bf5313ede6a.jpg\" width=\"779\" height=\"306\" alt=\"\" />', 5, '2', '-1', '4,2,1', '', 78, 1, 1663235167, 1, ''),
  733. (10, 'Operation', 'careers', 'PeaRhino operations are:', 10, '2', '-1', '4,1', '', 77, 1, 1663299896, 1, ''),
  734. (11, 'Our Readiness', 'banner', 'The hidden unaware issues of domestic or abroad preparedness are more common than expected. The modern civilization of infrastructures continues to improve reliability, capability, and interoperability, but always lacks immediate response when disasters occurred. Mother nature spares no man-made infrastructures. A sudden total breakdown of telecommunication can result in the loss of lives. How to minimize damages and quickly recover from the disastrous event is always a daunting challenge.\r\nThrough many studies over many decades have proven that modern civilization is still lacking a solution to respond rapidly when disasters strike. At PeaSafe, we fill the gap and always ready to support our front-line workers, police, fire, EMS, hospital, news network, and our community.', 10, '4', NULL, NULL, '', 70, 1, 1663300726, 1, '{uploadRes}1/2022/09/16/7269932fdd7f8ba760b50d8a119a60c0.png'),
  735. (12, 'Be Prepare when Telecommunications Fail', 'news', '', 10, '4', '-1', '2,1,0', '', 69, 1, 1663311492, 1, ''),
  736. (13, 'Info', 'info', '', 3, '4', '-1', '5,2,1', '', 68, 1, 1663313137, 1, ''),
  737. (14, 'Our Markets', 'banner', 'Communities are torn apart when disaster hits. Our frontliners risk their lives to rescue and save lives. But without communication, the daunting task would be impossible.', 10, '5', NULL, NULL, '', 60, 1, 1663315926, 1, '{uploadRes}1/2022/09/16/362a35e6651a4d1e398238a3ec43376e.jpg'),
  738. (15, 'PeaSafe Disaster Recovery', 'market', 'Communities are torn apart when disaster hits. Our frontliners risk their lives to rescue and save lives. But without communication, the daunting task would be impossible.\r\nPeaSafe Disaster Recovery with PeaRhinos can re-connect our front-line teams. From a plane crash site to a hurricane zone, from a mudslide to an earthquake, and/or from a wildfire to a tsunami, PeaSafe can partner up with local government agencies to provide a telecommunication network during the disastrous event. Police, Fire, EMS, Hospital, and FEMA are among many agencies that our system can provide telecommunication network solutions as soon as it deploys right in the heart of ground zero.', 10, '5', '-1', '2,1', '', 59, 1, 1663315971, 1, ''),
  739. (16, 'Our Services', 'banner', 'PeaSafe is extremely confident in bringing “PeaRhino” to serve Disaster Recovery. Our fleet of PeaRhinos are updated with routine services and maintenances. PeaSafe is on stand-by and ready to launch into action.', 10, '6', NULL, NULL, '', 50, 1, 1663316311, 1, '{uploadRes}1/2022/09/15/18e2999891374a475d0687ca9f989d83.jpg'),
  740. (17, 'Info', 'info', '', 10, '6', '-1', '5,2,1', '', 48, 1, 1663316444, 1, ''),
  741. (18, 'The PeaRhino system can be:', 'market', '<p>\r\n 1.Rent\r\n</p>\r\n<p>\r\n 2.Purchase\r\n</p>\r\n<p>\r\n 3.Lease\r\n</p>\r\n<p>\r\n 4.Subscribed as part of the contingency plan\r\n</p>', 10, '6', '-1', '2,1', '', 49, 1, 1663316685, 1, ''),
  742. (19, 'Contact Us', 'banner', '', 10, '3', NULL, NULL, '', 1, 1, 1663317132, 1, '{uploadRes}1/2022/09/16/56fa8614869b72a8763c408b128218a5.png');
  743. -- --------------------------------------------------------
  744. --
  745. -- 表的结构 `peasafe_page_page`
  746. --
  747. DROP TABLE IF EXISTS `peasafe_page_page`;
  748. CREATE TABLE `peasafe_page_page` (
  749. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  750. `name` varchar(32) DEFAULT NULL COMMENT '页面名称',
  751. `key` varchar(60) DEFAULT NULL COMMENT '页面标识',
  752. `pic` varchar(150) DEFAULT NULL COMMENT '页面图片',
  753. `desc` varchar(2000) DEFAULT NULL COMMENT '页面描述',
  754. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  755. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间',
  756. `reorder` int(11) NOT NULL DEFAULT '1' COMMENT '排序(数值越大越靠前)'
  757. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  758. --
  759. -- 转存表中的数据 `peasafe_page_page`
  760. --
  761. INSERT INTO `peasafe_page_page` (`id`, `name`, `key`, `pic`, `desc`, `state`, `cdate`, `reorder`) VALUES
  762. (1, 'Home', 'home', '', '默认页面', 1, 1662627769, 100),
  763. (2, 'Our Technology', 'technology', '', 'Our Technology', 1, 1662627802, 99),
  764. (3, 'Contact Us', 'contact', '', '11', 1, 1663221988, 1),
  765. (4, 'Our Readiness', 'readiness', '', 'Our Readiness', 1, 1663300694, 98),
  766. (5, 'Our Markets', 'market', '', 'Our Markets', 1, 1663315840, 97),
  767. (6, 'Our Services', 'service', '', 'Our Services', 1, 1663316263, 96);
  768. -- --------------------------------------------------------
  769. --
  770. -- 表的结构 `peasafe_page_page_module`
  771. --
  772. DROP TABLE IF EXISTS `peasafe_page_page_module`;
  773. CREATE TABLE `peasafe_page_page_module` (
  774. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  775. `page_id` int(11) NOT NULL DEFAULT '0' COMMENT '页面ID',
  776. `module_id` int(11) NOT NULL DEFAULT '0' COMMENT '模块ID',
  777. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  778. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  779. --
  780. -- 转存表中的数据 `peasafe_page_page_module`
  781. --
  782. INSERT INTO `peasafe_page_page_module` (`id`, `page_id`, `module_id`, `cdate`) VALUES
  783. (3, 1, 5, 1663220004),
  784. (5, 1, 3, 1663220011),
  785. (8, 1, 2, 1663220200),
  786. (13, 1, 1, 1663232443),
  787. (15, 2, 7, 1663232634),
  788. (20, 1, 4, 1663233193),
  789. (32, 2, 8, 1663296882),
  790. (35, 2, 9, 1663297315),
  791. (39, 2, 10, 1663299944),
  792. (42, 4, 11, 1663300793),
  793. (45, 4, 12, 1663311698),
  794. (48, 4, 13, 1663313215),
  795. (49, 5, 14, 1663315926),
  796. (56, 5, 15, 1663316224),
  797. (59, 6, 16, 1663316406),
  798. (62, 6, 17, 1663316559),
  799. (66, 6, 18, 1663316910),
  800. (67, 3, 19, 1663317132),
  801. (70, 1, 6, 1663317201),
  802. (71, 3, 6, 1663317201);
  803. -- --------------------------------------------------------
  804. --
  805. -- 表的结构 `peasafe_upload_cate`
  806. --
  807. DROP TABLE IF EXISTS `peasafe_upload_cate`;
  808. CREATE TABLE `peasafe_upload_cate` (
  809. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  810. `name` varchar(300) DEFAULT NULL COMMENT '分类名称',
  811. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  812. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间'
  813. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  814. --
  815. -- 转存表中的数据 `peasafe_upload_cate`
  816. --
  817. INSERT INTO `peasafe_upload_cate` (`id`, `name`, `state`, `cdate`) VALUES
  818. (1, '默认分类', 1, 1662628220),
  819. (2, '裁剪图片', 1, 1662628220);
  820. -- --------------------------------------------------------
  821. --
  822. -- 表的结构 `peasafe_upload_file`
  823. --
  824. DROP TABLE IF EXISTS `peasafe_upload_file`;
  825. CREATE TABLE `peasafe_upload_file` (
  826. `id` int(11) UNSIGNED NOT NULL COMMENT 'ID',
  827. `name` varchar(32) DEFAULT NULL COMMENT '文件名',
  828. `source_name` varchar(200) DEFAULT NULL COMMENT '原文件名',
  829. `upload` int(11) NOT NULL DEFAULT '1' COMMENT '所属资源配置',
  830. `cate` int(11) NOT NULL DEFAULT '1' COMMENT '所属分类',
  831. `key` varchar(32) DEFAULT NULL COMMENT 'KEY',
  832. `search` varchar(100) DEFAULT NULL COMMENT 'SEARCH',
  833. `value` varchar(800) DEFAULT NULL COMMENT '附加值',
  834. `ext` varchar(24) DEFAULT NULL COMMENT '后缀名',
  835. `file` varchar(150) DEFAULT NULL COMMENT '访问路径',
  836. `yunfile` varchar(150) DEFAULT NULL COMMENT '云端访问路径',
  837. `pic` varchar(150) DEFAULT NULL COMMENT '封面图-一般为视频截图',
  838. `pic_num` int(11) NOT NULL DEFAULT '0' COMMENT '视频截图的秒数',
  839. `width` int(11) NOT NULL DEFAULT '0' COMMENT '宽度',
  840. `height` int(11) NOT NULL DEFAULT '0' COMMENT '高度',
  841. `size` varchar(100) NOT NULL COMMENT '文件大小',
  842. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  843. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '上传时间'
  844. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  845. --
  846. -- 转存表中的数据 `peasafe_upload_file`
  847. --
  848. INSERT INTO `peasafe_upload_file` (`id`, `name`, `source_name`, `upload`, `cate`, `key`, `search`, `value`, `ext`, `file`, `yunfile`, `pic`, `pic_num`, `width`, `height`, `size`, `state`, `cdate`) VALUES
  849. (1, '1bb87d41d15fe27b500a4bfcde01bb0e', 'logo.png', 1, 1, '7b37f8ee1f3a1f2837c03fcfa7fc1cc2', 'main-config.logo', NULL, '.png', '1/2022/09/08/1bb87d41d15fe27b500a4bfcde01bb0e.png', NULL, NULL, 0, 167, 38, '2.02', 1, 1662628255),
  850. (2, '6d00ba102d83225131da7e0952864c99', 'peasafe-logo-white.png', 1, 1, '387f14078159813c2dbe2f90814da52b', 'main-config.logo', NULL, '.png', '1/2022/09/08/6d00ba102d83225131da7e0952864c99.png', NULL, NULL, 0, 338, 100, '29.62', 1, 1662630875),
  851. (3, '2494cd430843ef1b8bfcc912beea910b', 'peasafe-logo.png', 1, 1, '592a1c727111c98bde4923bad5877384', 'main-config.logo', NULL, '.png', '1/2022/09/08/2494cd430843ef1b8bfcc912beea910b.png', NULL, NULL, 0, 338, 100, '30.91', 1, 1662630899),
  852. (4, 'b6c31d01d41c9e1714958f9c56d01d8f', '图片1.png', 1, 1, '2d80b08d0185da0d881dc03342c19584', 'page-module.pic', NULL, '.png', '1/2022/09/09/b6c31d01d41c9e1714958f9c56d01d8f.png', NULL, NULL, 0, 1280, 720, '1,133.20', 1, 1663300774),
  853. (5, 'fb6381a43ae40fa20565a342f64af5db', 'Readiness-Congestion-overload.jpg', 1, 1, '50816f7af5ef4255be8a1e3248067bc5', 'page-data.col_2', NULL, '.jpg', '1/2022/09/13/fb6381a43ae40fa20565a342f64af5db.jpg', NULL, NULL, 0, 760, 480, '90.72', 1, 1663033328),
  854. (6, 'f83a3adb5c94d83a70fce80926b20271', 'technology-pearhino-1.jpg', 1, 1, 'c5e853df6400eaac2b604d37ec15971b', 'page-data.col_2', NULL, '.jpg', '1/2022/09/13/f83a3adb5c94d83a70fce80926b20271.jpg', NULL, NULL, 0, 1000, 667, '68.77', 1, 1663033424),
  855. (7, 'f3ccdd27d2000e3f9255a7e3e2c48800', '1.jpg', 1, 1, '438c6bf208eb8b8936c04b70501ecde9', 'page-data.col_2', NULL, '.jpg', '1/2022/09/14/f3ccdd27d2000e3f9255a7e3e2c48800.jpg', NULL, NULL, 0, 760, 480, '90.72', 1, 1663141492),
  856. (8, '156005c5baf40ff51a327f1c34f2975b', '2.jpg', 1, 1, '48ca7f97cc2acdb89a90168ad7048929', 'page-data.col_2', NULL, '.jpg', '1/2022/09/14/156005c5baf40ff51a327f1c34f2975b.jpg', NULL, NULL, 0, 760, 480, '110.71', 1, 1663141521),
  857. (9, '799bad5a3b514f096e69bbc4a7896cd9', '3.jpg', 1, 1, 'd7b427f1f29f28c47967eba1d3b2f2cf', 'page-data.col_2', NULL, '.jpg', '1/2022/09/14/799bad5a3b514f096e69bbc4a7896cd9.jpg', NULL, NULL, 0, 760, 480, '95.91', 1, 1663141544),
  858. (10, '4a47a0db6e60853dedfcfdf08a5ca249', '1.png', 1, 1, '16ff12595642e83fcfb53e7822ef6c6c', 'page-data.col_2', NULL, '.png', '1/2022/09/14/4a47a0db6e60853dedfcfdf08a5ca249.png', NULL, NULL, 0, 1200, 630, '688.93', 1, 1663297361),
  859. (11, 'fb5c81ed3a220004b71069645f112867', '2.png', 1, 1, 'b8fcc7355232d23bdf30285afc11af7d', 'page-data.col_2', NULL, '.png', '1/2022/09/14/fb5c81ed3a220004b71069645f112867.png', NULL, NULL, 0, 559, 235, '195.89', 1, 1663148913),
  860. (12, '10fb15c77258a991b0028080a64fb42d', '3.png', 1, 1, '638788d097e04ed25c3eeb1e7049f1bb', 'page-data.col_2', NULL, '.png', '1/2022/09/14/10fb15c77258a991b0028080a64fb42d.png', NULL, NULL, 0, 720, 450, '462.39', 1, 1663297351),
  861. (13, '18e2999891374a475d0687ca9f989d83', '6.jpg', 1, 1, '9be5b4c98dfe974b445177daa0028a32', 'page-data.col_2', NULL, '.jpg', '1/2022/09/15/18e2999891374a475d0687ca9f989d83.jpg', NULL, NULL, 0, 760, 480, '40.20', 1, 1663205935),
  862. (14, 'fe5df232cafa4c4e0f1a0294418e5660', '7.jpg', 1, 1, '4ab51f6aa03738c4c704fc4dc74aa1a7', 'page-data.col_2', NULL, '.jpg', '1/2022/09/15/fe5df232cafa4c4e0f1a0294418e5660.jpg', NULL, NULL, 0, 760, 480, '37.75', 1, 1663205946),
  863. (15, '8cda81fc7ad906927144235dda5fdf15', '8.jpg', 1, 1, 'dddbab500df511444c972888e25e1851', 'page-data.col_2', NULL, '.jpg', '1/2022/09/15/8cda81fc7ad906927144235dda5fdf15.jpg', NULL, NULL, 0, 760, 480, '24.06', 1, 1663205956),
  864. (16, '30e62fddc14c05988b44e7c02788e187', '9.jpg', 1, 1, '7fc39080b3a4f5908446855d993882cd', 'page-data.col_2', NULL, '.jpg', '1/2022/09/15/30e62fddc14c05988b44e7c02788e187.jpg', NULL, NULL, 0, 760, 480, '90.29', 1, 1663205966),
  865. (17, 'e18ec2c93dc39543b30bcb98139ae95d', 'back.jpg', 1, 1, '4b3eb044d2ab1cea22b49ff0af224977', 'page-module.pic', NULL, '.jpg', '1/2022/09/15/e18ec2c93dc39543b30bcb98139ae95d.jpg', NULL, NULL, 0, 1920, 1080, '316.02', 1, 1663232415),
  866. (18, '3b82b6e2e9f62bcaac7bb7dfe0be9c18', '1111.jpg', 1, 1, '73bffab03779e59ec50f02cba24dcd34', 'page-module.pic', NULL, '.jpg', '1/2022/09/15/3b82b6e2e9f62bcaac7bb7dfe0be9c18.jpg', NULL, NULL, 0, 760, 480, '95.91', 1, 1663232596),
  867. (19, '8e1d9b7c546278946c8221ae4f3cf7a1', '333.jpg', 1, 1, 'f6f5b62ba3abc4f4eef8af657f6a36a3', 'page-data.col_2', NULL, '.jpg', '1/2022/09/15/8e1d9b7c546278946c8221ae4f3cf7a1.jpg', NULL, NULL, 0, 1000, 667, '68.77', 1, 1663233262),
  868. (20, '32477b9e4abfddc67181f46bb401285a', '3333.jpg', 1, 1, '9e42d987d8fe1664c9179b748407463a', 'page-data.col_2', NULL, '.jpg', '1/2022/09/15/32477b9e4abfddc67181f46bb401285a.jpg', NULL, NULL, 0, 1000, 563, '163.52', 1, 1663233271),
  869. (21, '99872be59c3b6e7d89e9b32376657e72', 'Tmp7dd9bb4a286eeb8a732a7094f59079e8a03d6028', 1, 1, 'd3138c7c6d2b99be0c76ce692fc274a9', 'page-module.desc', NULL, '.png', '1/2022/09/15/99872be59c3b6e7d89e9b32376657e72.png', NULL, NULL, 0, 300, 244, '9.15', 1, 1663233412),
  870. (22, '296a0722807ad976a7f40bf5313ede6a', '微信图片_20220915172417.jpg', 1, 1, 'e4f1c7ff96711c1b920fd04af2efa110', 'page-module.desc', NULL, '.jpg', '1/2022/09/15/296a0722807ad976a7f40bf5313ede6a.jpg', NULL, NULL, 0, 779, 306, '12.65', 1, 1663233912),
  871. (23, '.cr_85_19_399_361_0_1_1', '.cr_85_19_399_361_0_1_1', 1, 2, '9005c780eda73c3f408913724cef11fa', NULL, NULL, '.jpg', '1/2022/09/14/10fb15c77258a991b0028080a64fb42d.png.cr_85_19_399_361_0_1_1.jpg', NULL, NULL, 0, 361, 399, '0.03', 1, 1663297755),
  872. (24, '7142b8354ca8a352b2b805f997c71549', '图片2.png', 1, 1, '89017c146f98d2b2acfbd3dac63c72f1', 'page-data.col_2', NULL, '.png', '1/2022/09/16/7142b8354ca8a352b2b805f997c71549.png', NULL, NULL, 0, 645, 285, '288.67', 1, 1663297767),
  873. (25, '.cr_294_5_275_285_0_1_1', '.cr_294_5_275_285_0_1_1', 1, 2, 'dcd9384428215bcc0b4619171b55507b', NULL, NULL, '.jpg', '1/2022/09/16/7142b8354ca8a352b2b805f997c71549.png.cr_294_5_275_285_0_1_1.jpg', NULL, NULL, 0, 285, 275, '0.01', 1, 1663297795),
  874. (26, '95106a90f455887e4a4b298735a4641b', '图片5.png', 1, 1, 'c9bcf991a2a888284d3d8455a1dd1e04', 'page-data.col_2', NULL, '.png', '1/2022/09/16/95106a90f455887e4a4b298735a4641b.png', NULL, NULL, 0, 501, 604, '62.85', 1, 1663297824),
  875. (27, '0a15afc49252258b6e7c0821c3499d3d', '34.png', 1, 1, '7945c906a69fffaffb878e7f1d1bb856', 'page-data.col_2', NULL, '.png', '1/2022/09/16/0a15afc49252258b6e7c0821c3499d3d.png', NULL, NULL, 0, 480, 334, '212.34', 1, 1663297880),
  876. (28, '.cr_47_2_324_245_0_1_1', '.cr_47_2_324_245_0_1_1', 1, 2, 'a5c39ee799b96bbf3bcbc0639232fef6', NULL, NULL, '.jpg', '1/2022/09/16/0a15afc49252258b6e7c0821c3499d3d.png.cr_47_2_324_245_0_1_1.jpg', NULL, NULL, 0, 245, 324, '0.01', 1, 1663297897),
  877. (29, 'bbfd20d91fffc3279b8192142f9533f1', 'case-masonary-thumb-2.jpg', 1, 1, '4cafb87395fc3f7f03f044462f3706a6', 'page-data.col_2', NULL, '.jpg', '1/2022/09/16/bbfd20d91fffc3279b8192142f9533f1.jpg', NULL, NULL, 0, 370, 450, '12.38', 1, 1663298076),
  878. (30, '47228ec1e3533778c2a4cb47a562a083', 'logo-PeaSafe-box-243x300.png', 1, 1, '6c751b50c820f750e3279ca2b4151fbc', 'page-data.col_2', NULL, '.png', '1/2022/09/16/47228ec1e3533778c2a4cb47a562a083.png', NULL, NULL, 0, 243, 300, '55.30', 1, 1663298091),
  879. (31, '2297fe42837979e0599dd75f6be1251b', 'Readiness-Congestion-overload (1).jpg', 1, 1, '47f401bd601ef3e2d481f914fc5f490d', 'page-data.col_2', NULL, '.jpg', '1/2022/09/16/2297fe42837979e0599dd75f6be1251b.jpg', NULL, NULL, 0, 760, 480, '90.72', 1, 1663298152),
  880. (32, '.cr_175_15_462_403_0_1_1', '.cr_175_15_462_403_0_1_1', 1, 2, '6f83a5eb34d69419462b8db343ada647', NULL, NULL, '.jpg', '1/2022/09/16/2297fe42837979e0599dd75f6be1251b.jpg.cr_175_15_462_403_0_1_1.jpg', NULL, NULL, 0, 403, 462, '0.05', 1, 1663298163),
  881. (33, 'e58fdbedc1d208ba25baacc0dc7ec622', 'Readiness-Disruption-of-Infrastructure.jpg', 1, 1, 'c9ccfb236a5a3dfda6ff4aedd21b57d8', 'page-data.col_2', NULL, '.jpg', '1/2022/09/16/e58fdbedc1d208ba25baacc0dc7ec622.jpg', NULL, NULL, 0, 760, 480, '110.71', 1, 1663298199),
  882. (34, '.cr_137_6_468_364_0_1_1', '.cr_137_6_468_364_0_1_1', 1, 2, 'b862bb27da8372a647dd8f2cdd0c2160', NULL, NULL, '.jpg', '1/2022/09/16/e58fdbedc1d208ba25baacc0dc7ec622.jpg.cr_137_6_468_364_0_1_1.jpg', NULL, NULL, 0, 364, 468, '0.04', 1, 1663298364),
  883. (35, '0aa45d56dee92f19ad654022eca4a30a', 'Readiness-Physical-Destruction.jpg', 1, 1, '284271d63e5cdc6e2700d60fac8a4ef3', 'page-data.col_2', NULL, '.jpg', '1/2022/09/16/0aa45d56dee92f19ad654022eca4a30a.jpg', NULL, NULL, 0, 760, 480, '95.91', 1, 1663298430),
  884. (36, '.cr_173_14_449_380_0_1_1', '.cr_173_14_449_380_0_1_1', 1, 2, '0c3530287794a9ce4b705e30139becb0', NULL, NULL, '.jpg', '1/2022/09/16/0aa45d56dee92f19ad654022eca4a30a.jpg.cr_173_14_449_380_0_1_1.jpg', NULL, NULL, 0, 380, 449, '0.03', 1, 1663298443),
  885. (37, '7269932fdd7f8ba760b50d8a119a60c0', '111.png', 1, 1, 'b4e528e3c20582d1af9186ad280cacb7', 'page-module.pic', NULL, '.png', '1/2022/09/16/7269932fdd7f8ba760b50d8a119a60c0.png', NULL, NULL, 0, 1280, 720, '1,133.20', 1, 1663300792),
  886. (38, '362a35e6651a4d1e398238a3ec43376e', 'Our-Market-scaled.jpg', 1, 1, 'd1b0a1ee4d92a7e3eccffb3ee0551a74', 'page-module.pic', NULL, '.jpg', '1/2022/09/16/362a35e6651a4d1e398238a3ec43376e.jpg', NULL, NULL, 0, 2560, 886, '191.94', 1, 1663315910),
  887. (39, '56fa8614869b72a8763c408b128218a5', '123213.png', 1, 1, 'fa2c40d8d3f5b87cc12de878f2a1013e', 'page-module.pic', NULL, '.png', '1/2022/09/16/56fa8614869b72a8763c408b128218a5.png', NULL, NULL, 0, 868, 434, '358.63', 1, 1663317094);
  888. -- --------------------------------------------------------
  889. --
  890. -- 表的结构 `peasafe_upload_upload`
  891. --
  892. DROP TABLE IF EXISTS `peasafe_upload_upload`;
  893. CREATE TABLE `peasafe_upload_upload` (
  894. `id` int(11) UNSIGNED NOT NULL COMMENT '配置ID',
  895. `name` varchar(24) DEFAULT NULL COMMENT '配置名',
  896. `setwh` int(1) NOT NULL DEFAULT '1' COMMENT '宽高限制-仅限图片类资源',
  897. `width` int(11) NOT NULL DEFAULT '0' COMMENT '最小宽度-仅限图片类资源,设置后上传如果小于该数值,则不能上传成功',
  898. `height` int(11) NOT NULL DEFAULT '0' COMMENT '最小高度-仅限图片类资源,设置后上传如果小于该数值,则不能上传成功',
  899. `size` int(11) NOT NULL DEFAULT '2' COMMENT '限制大小(单位:M)',
  900. `type` varchar(800) DEFAULT NULL COMMENT '限制文件后缀类型-多个用逗号隔开',
  901. `alter` varchar(255) DEFAULT NULL COMMENT '默认的后续操作-T=1&C=1&W=1,其中T代表缩略图,1代表对应的ID,C代表裁剪图,W代表水印图,仅限图片类资源',
  902. `cover` int(1) NOT NULL DEFAULT '1' COMMENT '是否覆盖-将根据上传时的文件名进行文件覆盖操作',
  903. `save_type` int(1) NOT NULL DEFAULT '1' COMMENT '存储位置-如需进行后续操作,云端不支持,则需要本地处理、云端存储,建议选择云端存储为主,本地存储为辅',
  904. `yun` int(1) NOT NULL DEFAULT '1' COMMENT '选择云端',
  905. `bucket` varchar(800) DEFAULT NULL COMMENT 'BUCKET名称',
  906. `vod_convert` int(1) NOT NULL DEFAULT '1' COMMENT '是否进行视频转码',
  907. `pipeline` varchar(800) DEFAULT NULL COMMENT '队列名称-多个用逗号隔开,将随机使用队列',
  908. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  909. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  910. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  911. --
  912. -- 转存表中的数据 `peasafe_upload_upload`
  913. --
  914. INSERT INTO `peasafe_upload_upload` (`id`, `name`, `setwh`, `width`, `height`, `size`, `type`, `alter`, `cover`, `save_type`, `yun`, `bucket`, `vod_convert`, `pipeline`, `state`, `cdate`) VALUES
  915. (1, '默认图片配置', 1, 0, 0, 2, 'jpg,png,gif,webp', NULL, 1, 1, 1, NULL, 1, NULL, 1, 1662627753),
  916. (2, '默认音频配置', 1, 0, 0, 20, 'mp3,m4a', NULL, 1, 1, 1, NULL, 1, NULL, 1, 1662627753),
  917. (3, '默认视频配置', 1, 0, 0, 200, 'video,flv,mp4,webm', NULL, 1, 1, 1, NULL, 1, NULL, 1, 1662627753),
  918. (4, '默认文件配置', 1, 0, 0, 20, 'jpg,png,gif,doc,pdf,rar,zip,xls,xlsx,docx,msi', NULL, 1, 1, 1, NULL, 1, NULL, 1, 1662627753),
  919. (5, '默认音视频配置', 1, 0, 0, 200, 'video,mp3,flv,mp4,webm,mov,m4a', NULL, 1, 1, 1, NULL, 1, NULL, 1, 1662627753),
  920. (6, '用户上传图片', 1, 0, 0, 2, 'jpg,png,gif,webp', NULL, 1, 1, 1, NULL, 1, NULL, 1, 1662627753),
  921. (7, '裁剪图片', 1, 0, 0, 2, 'jpg,png,gif,webp', NULL, 1, 1, 1, NULL, 1, NULL, 1, 1662627753);
  922. -- --------------------------------------------------------
  923. --
  924. -- 表的结构 `peasafe_upload_yun`
  925. --
  926. DROP TABLE IF EXISTS `peasafe_upload_yun`;
  927. CREATE TABLE `peasafe_upload_yun` (
  928. `id` int(11) UNSIGNED NOT NULL COMMENT '配置ID',
  929. `name` varchar(24) DEFAULT NULL COMMENT '配置名',
  930. `type` int(1) NOT NULL DEFAULT '2' COMMENT '存储类别-OSS建议申请STS保证安全性,参考HTTPS://HELP.ALIYUN.COM/DOCUMENT_DETAIL/100624.HTML',
  931. `host` varchar(800) DEFAULT NULL COMMENT '域名',
  932. `appkey` varchar(100) DEFAULT NULL COMMENT 'APPKEY',
  933. `appsecret` varchar(200) DEFAULT NULL COMMENT 'APPSECRET',
  934. `region_id` varchar(200) DEFAULT NULL COMMENT '区域ID-OSS直接填REGIONID即可,如BEIJING,七牛可填写Z1',
  935. `role_arn` varchar(200) DEFAULT NULL COMMENT '权限策略ARN-OSS需要填写,如未填写,系统默认使用非STS形式上传至OSS,不能保证安全性',
  936. `token` varchar(800) DEFAULT NULL COMMENT 'TOKEN',
  937. `token_endtime` int(11) NOT NULL DEFAULT '0' COMMENT 'TOKEN失效时间',
  938. `state` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
  939. `cdate` int(11) NOT NULL DEFAULT '0' COMMENT '录入时间'
  940. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  941. --
  942. -- 转储表的索引
  943. --
  944. --
  945. -- 表的索引 `peasafe_main_config`
  946. --
  947. ALTER TABLE `peasafe_main_config`
  948. ADD PRIMARY KEY (`id`);
  949. --
  950. -- 表的索引 `peasafe_main_contact`
  951. --
  952. ALTER TABLE `peasafe_main_contact`
  953. ADD PRIMARY KEY (`id`);
  954. --
  955. -- 表的索引 `peasafe_main_menu`
  956. --
  957. ALTER TABLE `peasafe_main_menu`
  958. ADD PRIMARY KEY (`id`);
  959. --
  960. -- 表的索引 `peasafe_manage_admin`
  961. --
  962. ALTER TABLE `peasafe_manage_admin`
  963. ADD PRIMARY KEY (`id`);
  964. --
  965. -- 表的索引 `peasafe_manage_admin_group`
  966. --
  967. ALTER TABLE `peasafe_manage_admin_group`
  968. ADD PRIMARY KEY (`id`);
  969. --
  970. -- 表的索引 `peasafe_manage_admin_role`
  971. --
  972. ALTER TABLE `peasafe_manage_admin_role`
  973. ADD PRIMARY KEY (`id`);
  974. --
  975. -- 表的索引 `peasafe_manage_api`
  976. --
  977. ALTER TABLE `peasafe_manage_api`
  978. ADD PRIMARY KEY (`id`);
  979. --
  980. -- 表的索引 `peasafe_manage_auth`
  981. --
  982. ALTER TABLE `peasafe_manage_auth`
  983. ADD PRIMARY KEY (`id`);
  984. --
  985. -- 表的索引 `peasafe_manage_company`
  986. --
  987. ALTER TABLE `peasafe_manage_company`
  988. ADD PRIMARY KEY (`id`);
  989. --
  990. -- 表的索引 `peasafe_manage_config`
  991. --
  992. ALTER TABLE `peasafe_manage_config`
  993. ADD PRIMARY KEY (`id`);
  994. --
  995. -- 表的索引 `peasafe_manage_cron`
  996. --
  997. ALTER TABLE `peasafe_manage_cron`
  998. ADD PRIMARY KEY (`id`);
  999. --
  1000. -- 表的索引 `peasafe_manage_group`
  1001. --
  1002. ALTER TABLE `peasafe_manage_group`
  1003. ADD PRIMARY KEY (`id`);
  1004. --
  1005. -- 表的索引 `peasafe_manage_log`
  1006. --
  1007. ALTER TABLE `peasafe_manage_log`
  1008. ADD PRIMARY KEY (`id`);
  1009. --
  1010. -- 表的索引 `peasafe_manage_menu`
  1011. --
  1012. ALTER TABLE `peasafe_manage_menu`
  1013. ADD PRIMARY KEY (`id`);
  1014. --
  1015. -- 表的索引 `peasafe_manage_menu_func`
  1016. --
  1017. ALTER TABLE `peasafe_manage_menu_func`
  1018. ADD PRIMARY KEY (`id`);
  1019. --
  1020. -- 表的索引 `peasafe_manage_menu_group`
  1021. --
  1022. ALTER TABLE `peasafe_manage_menu_group`
  1023. ADD PRIMARY KEY (`id`);
  1024. --
  1025. -- 表的索引 `peasafe_manage_notice`
  1026. --
  1027. ALTER TABLE `peasafe_manage_notice`
  1028. ADD PRIMARY KEY (`id`);
  1029. --
  1030. -- 表的索引 `peasafe_manage_opt`
  1031. --
  1032. ALTER TABLE `peasafe_manage_opt`
  1033. ADD PRIMARY KEY (`id`);
  1034. --
  1035. -- 表的索引 `peasafe_manage_role`
  1036. --
  1037. ALTER TABLE `peasafe_manage_role`
  1038. ADD PRIMARY KEY (`id`);
  1039. --
  1040. -- 表的索引 `peasafe_page_col`
  1041. --
  1042. ALTER TABLE `peasafe_page_col`
  1043. ADD PRIMARY KEY (`id`);
  1044. --
  1045. -- 表的索引 `peasafe_page_data`
  1046. --
  1047. ALTER TABLE `peasafe_page_data`
  1048. ADD PRIMARY KEY (`id`);
  1049. --
  1050. -- 表的索引 `peasafe_page_func`
  1051. --
  1052. ALTER TABLE `peasafe_page_func`
  1053. ADD PRIMARY KEY (`id`);
  1054. --
  1055. -- 表的索引 `peasafe_page_module`
  1056. --
  1057. ALTER TABLE `peasafe_page_module`
  1058. ADD PRIMARY KEY (`id`);
  1059. --
  1060. -- 表的索引 `peasafe_page_page`
  1061. --
  1062. ALTER TABLE `peasafe_page_page`
  1063. ADD PRIMARY KEY (`id`);
  1064. --
  1065. -- 表的索引 `peasafe_page_page_module`
  1066. --
  1067. ALTER TABLE `peasafe_page_page_module`
  1068. ADD PRIMARY KEY (`id`);
  1069. --
  1070. -- 表的索引 `peasafe_upload_cate`
  1071. --
  1072. ALTER TABLE `peasafe_upload_cate`
  1073. ADD PRIMARY KEY (`id`);
  1074. --
  1075. -- 表的索引 `peasafe_upload_file`
  1076. --
  1077. ALTER TABLE `peasafe_upload_file`
  1078. ADD PRIMARY KEY (`id`),
  1079. ADD KEY `search` (`key`,`cate`,`search`),
  1080. ADD KEY `name` (`name`,`upload`);
  1081. --
  1082. -- 表的索引 `peasafe_upload_upload`
  1083. --
  1084. ALTER TABLE `peasafe_upload_upload`
  1085. ADD PRIMARY KEY (`id`);
  1086. --
  1087. -- 表的索引 `peasafe_upload_yun`
  1088. --
  1089. ALTER TABLE `peasafe_upload_yun`
  1090. ADD PRIMARY KEY (`id`);
  1091. --
  1092. -- 在导出的表使用AUTO_INCREMENT
  1093. --
  1094. --
  1095. -- 使用表AUTO_INCREMENT `peasafe_main_config`
  1096. --
  1097. ALTER TABLE `peasafe_main_config`
  1098. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '平台ID', AUTO_INCREMENT=2;
  1099. --
  1100. -- 使用表AUTO_INCREMENT `peasafe_main_contact`
  1101. --
  1102. ALTER TABLE `peasafe_main_contact`
  1103. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID', AUTO_INCREMENT=4;
  1104. --
  1105. -- 使用表AUTO_INCREMENT `peasafe_main_menu`
  1106. --
  1107. ALTER TABLE `peasafe_main_menu`
  1108. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID', AUTO_INCREMENT=7;
  1109. --
  1110. -- 使用表AUTO_INCREMENT `peasafe_manage_admin`
  1111. --
  1112. ALTER TABLE `peasafe_manage_admin`
  1113. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '管理员ID', AUTO_INCREMENT=2;
  1114. --
  1115. -- 使用表AUTO_INCREMENT `peasafe_manage_admin_group`
  1116. --
  1117. ALTER TABLE `peasafe_manage_admin_group`
  1118. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID', AUTO_INCREMENT=2;
  1119. --
  1120. -- 使用表AUTO_INCREMENT `peasafe_manage_admin_role`
  1121. --
  1122. ALTER TABLE `peasafe_manage_admin_role`
  1123. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID', AUTO_INCREMENT=2;
  1124. --
  1125. -- 使用表AUTO_INCREMENT `peasafe_manage_api`
  1126. --
  1127. ALTER TABLE `peasafe_manage_api`
  1128. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  1129. --
  1130. -- 使用表AUTO_INCREMENT `peasafe_manage_auth`
  1131. --
  1132. ALTER TABLE `peasafe_manage_auth`
  1133. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  1134. --
  1135. -- 使用表AUTO_INCREMENT `peasafe_manage_company`
  1136. --
  1137. ALTER TABLE `peasafe_manage_company`
  1138. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID', AUTO_INCREMENT=2;
  1139. --
  1140. -- 使用表AUTO_INCREMENT `peasafe_manage_config`
  1141. --
  1142. ALTER TABLE `peasafe_manage_config`
  1143. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '配置ID', AUTO_INCREMENT=2;
  1144. --
  1145. -- 使用表AUTO_INCREMENT `peasafe_manage_cron`
  1146. --
  1147. ALTER TABLE `peasafe_manage_cron`
  1148. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  1149. --
  1150. -- 使用表AUTO_INCREMENT `peasafe_manage_group`
  1151. --
  1152. ALTER TABLE `peasafe_manage_group`
  1153. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '组ID', AUTO_INCREMENT=2;
  1154. --
  1155. -- 使用表AUTO_INCREMENT `peasafe_manage_log`
  1156. --
  1157. ALTER TABLE `peasafe_manage_log`
  1158. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID', AUTO_INCREMENT=178;
  1159. --
  1160. -- 使用表AUTO_INCREMENT `peasafe_manage_menu`
  1161. --
  1162. ALTER TABLE `peasafe_manage_menu`
  1163. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '菜单ID', AUTO_INCREMENT=27;
  1164. --
  1165. -- 使用表AUTO_INCREMENT `peasafe_manage_menu_func`
  1166. --
  1167. ALTER TABLE `peasafe_manage_menu_func`
  1168. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '功能ID';
  1169. --
  1170. -- 使用表AUTO_INCREMENT `peasafe_manage_menu_group`
  1171. --
  1172. ALTER TABLE `peasafe_manage_menu_group`
  1173. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '分组ID', AUTO_INCREMENT=3;
  1174. --
  1175. -- 使用表AUTO_INCREMENT `peasafe_manage_notice`
  1176. --
  1177. ALTER TABLE `peasafe_manage_notice`
  1178. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '公告ID';
  1179. --
  1180. -- 使用表AUTO_INCREMENT `peasafe_manage_opt`
  1181. --
  1182. ALTER TABLE `peasafe_manage_opt`
  1183. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  1184. --
  1185. -- 使用表AUTO_INCREMENT `peasafe_manage_role`
  1186. --
  1187. ALTER TABLE `peasafe_manage_role`
  1188. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '角色ID', AUTO_INCREMENT=3;
  1189. --
  1190. -- 使用表AUTO_INCREMENT `peasafe_page_col`
  1191. --
  1192. ALTER TABLE `peasafe_page_col`
  1193. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID', AUTO_INCREMENT=6;
  1194. --
  1195. -- 使用表AUTO_INCREMENT `peasafe_page_data`
  1196. --
  1197. ALTER TABLE `peasafe_page_data`
  1198. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID', AUTO_INCREMENT=35;
  1199. --
  1200. -- 使用表AUTO_INCREMENT `peasafe_page_func`
  1201. --
  1202. ALTER TABLE `peasafe_page_func`
  1203. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID';
  1204. --
  1205. -- 使用表AUTO_INCREMENT `peasafe_page_module`
  1206. --
  1207. ALTER TABLE `peasafe_page_module`
  1208. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '模块ID', AUTO_INCREMENT=20;
  1209. --
  1210. -- 使用表AUTO_INCREMENT `peasafe_page_page`
  1211. --
  1212. ALTER TABLE `peasafe_page_page`
  1213. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID', AUTO_INCREMENT=7;
  1214. --
  1215. -- 使用表AUTO_INCREMENT `peasafe_page_page_module`
  1216. --
  1217. ALTER TABLE `peasafe_page_page_module`
  1218. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID', AUTO_INCREMENT=72;
  1219. --
  1220. -- 使用表AUTO_INCREMENT `peasafe_upload_cate`
  1221. --
  1222. ALTER TABLE `peasafe_upload_cate`
  1223. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID', AUTO_INCREMENT=3;
  1224. --
  1225. -- 使用表AUTO_INCREMENT `peasafe_upload_file`
  1226. --
  1227. ALTER TABLE `peasafe_upload_file`
  1228. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID', AUTO_INCREMENT=40;
  1229. --
  1230. -- 使用表AUTO_INCREMENT `peasafe_upload_upload`
  1231. --
  1232. ALTER TABLE `peasafe_upload_upload`
  1233. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '配置ID', AUTO_INCREMENT=8;
  1234. --
  1235. -- 使用表AUTO_INCREMENT `peasafe_upload_yun`
  1236. --
  1237. ALTER TABLE `peasafe_upload_yun`
  1238. MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '配置ID';
  1239. COMMIT;
  1240. /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
  1241. /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
  1242. /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;