代码拉取完成,页面将自动刷新
-- --------------------------------------------------------
-- 主机: 202.181.212.167
-- 服务器版本: 5.6.25-log - MySQL Community Server (GPL)
-- 服务器操作系统: Win64
-- HeidiSQL 版本: 9.3.0.4984
-- --------------------------------------------------------
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET NAMES utf8mb4 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
-- 导出 apidb 的数据库结构
CREATE DATABASE IF NOT EXISTS `apidb` /*!40100 DEFAULT CHARACTER SET utf8 */;
USE `apidb`;
-- 导出 表 apidb.category 结构
CREATE TABLE IF NOT EXISTS `category` (
`Id` int(11) NOT NULL AUTO_INCREMENT,
`ProjectId` int(11) NOT NULL,
`ReallyId` int(11) NOT NULL,
`ParentId` int(11) NOT NULL,
`Name` varchar(100) DEFAULT NULL,
`Sort` decimal(18,2) NOT NULL,
`CreateDate` datetime DEFAULT NULL,
`UpdateDate` datetime NOT NULL,
PRIMARY KEY (`Id`)
) ENGINE=InnoDB AUTO_INCREMENT=100 DEFAULT CHARSET=utf8;
-- 正在导出表 apidb.category 的数据:~12 rows (大约)
/*!40000 ALTER TABLE `category` DISABLE KEYS */;
INSERT INTO `category` (`Id`, `ProjectId`, `ReallyId`, `ParentId`, `Name`, `Sort`, `CreateDate`, `UpdateDate`) VALUES
(78, 1, 106, 0, '會員API', 20160318125312.00, NULL, '2016-03-18 12:53:13'),
(79, 1, 102, 0, '類目API', 20160318125311.00, NULL, '2016-03-18 12:53:13'),
(80, 1, 103, 0, '商品API', 20160318125310.00, NULL, '2016-03-18 12:53:13'),
(81, 1, 105, 0, '購物車API', 20160318125309.00, NULL, '2016-03-18 12:53:13'),
(82, 1, 104, 0, '付款API', 20160318125308.00, NULL, '2016-03-18 12:53:13'),
(83, 1, 102, 0, '訂單API', 20160318125307.00, NULL, '2016-03-18 12:53:13'),
(84, 1, 102, 0, '消息API', 20160318125306.00, NULL, '2016-03-18 12:53:13'),
(85, 1, 102, 0, '其他API', 20160318125305.00, NULL, '2016-03-18 12:53:13'),
(96, 4, 102, 0, 'new node1', 20160407213526.00, NULL, '2016-04-07 21:35:27'),
(97, 4, 103, 0, 'new node2', 20160407213525.00, NULL, '2016-04-07 21:35:27'),
(98, 4, 105, 0, '1111', 20160407213524.00, NULL, '2016-04-07 21:35:27'),
(99, 4, 104, 0, 'new node3', 20160407213523.00, NULL, '2016-04-07 21:35:27');
/*!40000 ALTER TABLE `category` ENABLE KEYS */;
-- 导出 表 apidb.errorcode 结构
CREATE TABLE IF NOT EXISTS `errorcode` (
`Id` int(11) NOT NULL AUTO_INCREMENT,
`ProjectId` int(11) NOT NULL,
`Code` varchar(10) DEFAULT NULL,
`Summary` varchar(500) DEFAULT NULL,
`Description` text,
`Sort` decimal(18,2) NOT NULL,
`CreateDate` datetime DEFAULT NULL,
`UpdateDate` datetime NOT NULL,
PRIMARY KEY (`Id`)
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8;
-- 正在导出表 apidb.errorcode 的数据:~9 rows (大约)
/*!40000 ALTER TABLE `errorcode` DISABLE KEYS */;
INSERT INTO `errorcode` (`Id`, `ProjectId`, `Code`, `Summary`, `Description`, `Sort`, `CreateDate`, `UpdateDate`) VALUES
(3, 1, '180201', '其他-->獲取公共語言:網絡錯誤', NULL, 20160318123655.00, '2016-03-18 12:12:21', '2016-03-18 12:36:55'),
(4, 1, '180101', '其他-->獲取語言:網絡錯誤', NULL, 20160318123513.00, '2016-03-18 12:34:47', '2016-03-18 12:35:13'),
(6, 1, '100', '操作正確', '<br />', 20160322165159.00, '2016-03-22 12:01:52', '2016-03-22 16:51:59'),
(7, 1, '101', '表示需要登錄,就是memberId沒有傳或則找不到用戶', '<br />', 20160322165154.00, '2016-03-22 16:51:01', '2016-03-22 16:51:55'),
(8, 1, '500', 'database error ', '数据库错误获取数据失败', 20160329104752.00, '2016-03-29 10:47:53', '2016-03-29 10:47:53'),
(9, 1, '501', 'parameter error ', '缺少参数或则参数不符合制定的数据类型', 20160329104842.00, '2016-03-29 10:48:42', '2016-03-29 10:48:42'),
(10, 1, '502', 'site Not Exist ', 'SiteId 错误,网站不存在', 20160329104914.00, '2016-03-29 10:49:15', '2016-03-29 10:49:15'),
(11, 1, '110101', 'Email Registered', '邮箱已注册', 20160329104936.00, '2016-03-29 10:49:37', '2016-03-29 10:49:37'),
(12, 1, '110102', 'Phone Registered', '手机号已注册', 20160329104956.00, '2016-03-29 10:49:56', '2016-03-29 10:49:56');
/*!40000 ALTER TABLE `errorcode` ENABLE KEYS */;
-- 导出 表 apidb.method 结构
CREATE TABLE IF NOT EXISTS `method` (
`Id` int(11) NOT NULL AUTO_INCREMENT,
`ProjectId` int(11) NOT NULL,
`CategoryId` int(11) NOT NULL,
`Name` varchar(50) DEFAULT NULL,
`Url` varchar(1000) DEFAULT NULL,
`SupportFomats` varchar(50) DEFAULT NULL,
`HttpMethod` int(11) NOT NULL,
`IsNeedLogin` tinyint(1) NOT NULL,
`IsTimeLimit` tinyint(1) NOT NULL,
`RequestLevel` varchar(50) DEFAULT NULL,
`Description` varchar(1000) DEFAULT NULL,
`ResultDemo` text,
`Sort` decimal(18,2) NOT NULL,
`CreateDate` datetime DEFAULT NULL,
`UpdateDate` datetime NOT NULL,
PRIMARY KEY (`Id`)
) ENGINE=InnoDB AUTO_INCREMENT=38 DEFAULT CHARSET=utf8;
-- 正在导出表 apidb.method 的数据:~27 rows (大约)
/*!40000 ALTER TABLE `method` DISABLE KEYS */;
INSERT INTO `method` (`Id`, `ProjectId`, `CategoryId`, `Name`, `Url`, `SupportFomats`, `HttpMethod`, `IsNeedLogin`, `IsTimeLimit`, `RequestLevel`, `Description`, `ResultDemo`, `Sort`, `CreateDate`, `UpdateDate`) VALUES
(1, 1, 78, '註冊', 'account/register', 'JSON', 1, 0, 0, NULL, '會員註冊', '<span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:14px;text-rendering:auto;-webkit-font-smoothing:antialiased;color:#555555;white-space:normal;cursor:pointer;"></span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">{</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"status"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">110213</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">,</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"msg"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">""</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">,</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"data"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"注册成功,請到登錄頁面登錄"</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<p>\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">}</span>\r\n</p>\r\n<p>\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><br />\r\n</span>\r\n</p>\r\n<p>\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><br />\r\n</span>\r\n</p>', 20160321162653.00, '2016-03-17 19:11:43', '2016-03-21 16:26:53'),
(2, 1, 85, '獲取語言', 'language/getlanguage', 'JSON', 0, 0, 0, NULL, '獲取網站設置的語言 ', '<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">{</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"status"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">180100</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">,</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"msg"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">""</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">,</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"data"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span data-type="array" data-size="3" style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>[<br style="box-sizing:border-box;" />\r\n <span data-type="object" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"LangId"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">90</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Flag"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"tw"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Name"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"繁體"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Status"</span>:<span class="json_boolean" style="box-sizing:border-box;">true</span><br style="box-sizing:border-box;" />\r\n }</span>,<br style="box-sizing:border-box;" />\r\n <span data-type="object" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"LangId"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">91</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Flag"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"cn"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Name"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"简体"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Status"</span>:<span class="json_boolean" style="box-sizing:border-box;">true</span><br style="box-sizing:border-box;" />\r\n }</span>,<br style="box-sizing:border-box;" />\r\n <span data-type="object" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"LangId"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">87</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Flag"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"en"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Name"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"English"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Status"</span>:<span class="json_boolean" style="box-sizing:border-box;">true</span><br style="box-sizing:border-box;" />\r\n }</span><br style="box-sizing:border-box;" />\r\n ]</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<p>\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">}</span>\r\n</p>\r\n<p>\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><br />\r\n</span>\r\n</p>', 20160321163146.00, '2016-03-18 15:15:28', '2016-03-21 16:31:47'),
(3, 1, 85, '獲取公共標識', 'language/GetCommonIdentity', 'JSON', 0, 0, 0, NULL, '獲取某個網站某個語言的公共標識 ', '<span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:14px;text-rendering:auto;-webkit-font-smoothing:antialiased;color:#555555;white-space:normal;cursor:pointer;"></span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:14px;text-rendering:auto;-webkit-font-smoothing:antialiased;color:#555555;white-space:normal;cursor:pointer;"></span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">{</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"status"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">200</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">,</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"msg"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">""</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">,</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"data"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span data-type="object" style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"ActivationFails"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"激活失敗"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"ActivationSuccess"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"激活成功"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"ActivationUser"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"激活用戶"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"ActiveEmailSended"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"激活電郵已發送,請登錄郵箱點擊激活,如果未收到請到注册頁面重新發送激活電郵"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"AddCart"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"加購物車"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Adding"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"正在添加..."</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Address"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"詳細地址"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"AddressError"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"收貨地址錯誤"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"AddToCart"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"加入購物車"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"AlipayPaymentStatus"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"支付寶無返回參數,未知付款狀態"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"AlipayToCNYAndNotSetExchangeRate"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"支付寶只能支持人民幣付款,網站沒有設置人民幣匯率。"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"AllOrder"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"全部訂單"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"AlreadActive"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"你已激活成功,不需要再次激活"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"AlreadAddToCart"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"已加入購物車"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"AlreadSendEmail"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"郵件已經發送,請到郵箱查看"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"AmountError"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"商品總金額錯誤"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"AmountsPayable"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"應付金額"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"AntiLoginRegister"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"網站未啟用會員登錄註冊功能"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"AvailablePoints"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"可用積分"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"BankTransfer"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"銀行轉帳"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"BecomeMember"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"成為會員"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"BestSelling"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"熱賣推薦"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Buy"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"完成購買"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"BuyerNote"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"買家備註"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"BuyersRemarks"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"買家備註"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"BuyNow"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"立即購買"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Cancel"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"取消"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"CanceledOrdersCanNotBeModified"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"已取消的訂單不能再修改"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"CancelOrder"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"取消訂單"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"CannotEmpty"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"不能為空!"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"CapturedGood"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"拍下商品"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Cart"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"購物車"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"CashRewardDate"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"0 現金賞將在2015年月日到期"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"CashRewards"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"現金賞"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"ChangePassword"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"修改密碼"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Checkout"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"購物車-拍下商品"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Clearing"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"付款"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"ClickReturnHome"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"點擊這裡返回網站首頁"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"YouPayForSuccess"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"您已成功支付"</span><br style="box-sizing:border-box;" />\r\n }</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n</span>\r\n<p>\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">}</span></span>\r\n</p>\r\n<p>\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><br />\r\n</span></span>\r\n</p>\r\n<p>\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><br />\r\n</span></span>\r\n</p>\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"></span>', 20160321163222.00, '2016-03-18 15:23:29', '2016-03-21 16:32:23'),
(4, 1, 85, '獲取網站貨幣', 'currency/getcurrency', 'JSON', 0, 0, 0, NULL, '獲取網站貨幣', '<span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:14px;text-rendering:auto;-webkit-font-smoothing:antialiased;color:#555555;white-space:normal;cursor:pointer;"></span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">{</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"status"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">200</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">,</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"msg"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">""</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">,</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"data"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span data-type="array" data-size="2" style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>[<br style="box-sizing:border-box;" />\r\n <span data-type="object" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"CurrencyId"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">308</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Name"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"人民幣"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"SiteId"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">1072</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Flag"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"CNY"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"CurrencySymbol"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"¥"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Value"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">1</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"IsSiteDefault"</span>:<span class="json_boolean" style="box-sizing:border-box;">true</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"ModelId"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">0</span><br style="box-sizing:border-box;" />\r\n }</span>,<br style="box-sizing:border-box;" />\r\n <span data-type="object" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"CurrencyId"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">309</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Name"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"港元"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"SiteId"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">1072</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Flag"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"HKD"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"CurrencySymbol"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"HK$"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Value"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">1.1942</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"IsSiteDefault"</span>:<span class="json_boolean" style="box-sizing:border-box;">false</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"ModelId"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">0</span><br style="box-sizing:border-box;" />\r\n }</span><br style="box-sizing:border-box;" />\r\n ]</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<p>\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">}</span>\r\n</p>\r\n<p>\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><br />\r\n</span>\r\n</p>\r\n<div id="jfContent" style="-webkit-font-smoothing:antialiased;-webkit-user-select:text;margin:0px;color:#333333;font-family:Simsun;font-size:14px;line-height:normal;white-space:normal;">\r\n <div id="formattedJson" style="-webkit-font-smoothing:antialiased;padding-left:28px;padding-top:6px;color:#444444;font-stretch:normal;font-size:13px;line-height:18px;font-family:monospace;">\r\n </div>\r\n</div>', 20160321163231.00, '2016-03-18 15:40:52', '2016-03-21 16:32:32'),
(5, 1, 85, '上傳圖片', 'file/upload', NULL, 1, 0, 0, NULL, '上傳圖片', NULL, 20160321163243.00, '2016-03-18 16:11:12', '2016-03-21 16:32:43'),
(6, 1, 78, '登录', 'account/login', 'JSON', 1, 0, 0, NULL, '<p>\r\n <span style="white-space:normal;">用戶可輸入郵箱,或手機號碼進行登錄</span>\r\n</p>\r\n<div style="white-space:normal;">\r\n (郵箱或者手機號碼,根據@符號判斷。2個參數有一個為空)\r\n</div>\r\n<div style="white-space:normal;">\r\n</div>', '<span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:14px;text-rendering:auto;-webkit-font-smoothing:antialiased;color:#555555;white-space:normal;cursor:pointer;"></span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">{</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"data"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span data-type="object" style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"memberId"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">1150</span><br style="box-sizing:border-box;" />\r\n }</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">,</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"msg"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">""</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">,</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"status"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">100</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<p>\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">}</span>\r\n</p>\r\n<p>\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><br />\r\n</span>\r\n</p>\r\n<p>\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><br />\r\n</span>\r\n</p>', 20160322151516.00, '2016-03-21 17:49:49', '2016-03-22 15:15:17'),
(7, 1, 78, '获取會員的動態屬性(不包括基本屬性)', 'member/GetMemberPropertys', 'JSON', 0, 1, 0, NULL, '获取會員的動態屬性(不包括基本屬性)<br />', '<span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:14px;text-rendering:auto;-webkit-font-smoothing:antialiased;color:#555555;white-space:normal;cursor:pointer;"></span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:14px;text-rendering:auto;-webkit-font-smoothing:antialiased;color:#555555;white-space:normal;cursor:pointer;"></span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:14px;text-rendering:auto;-webkit-font-smoothing:antialiased;color:#555555;white-space:normal;cursor:pointer;"></span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">{</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"data"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span data-type="array" data-size="6" style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>[<br style="box-sizing:border-box;" />\r\n <span data-type="object" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Name"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"請選擇多選按鈕"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"POSPropertyId"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">32</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Required"</span>:<span class="json_boolean" style="box-sizing:border-box;">true</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"details"</span>:<span data-type="array" data-size="3" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>[<br style="box-sizing:border-box;" />\r\n <span data-type="object" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"PosDetailId"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">14</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Value"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"多選項01"</span><br style="box-sizing:border-box;" />\r\n }</span>,<br style="box-sizing:border-box;" />\r\n <span data-type="object" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"PosDetailId"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">15</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Value"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"多選項02"</span><br style="box-sizing:border-box;" />\r\n }</span>,<br style="box-sizing:border-box;" />\r\n <span data-type="object" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"PosDetailId"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">16</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Value"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"多選項03"</span><br style="box-sizing:border-box;" />\r\n }</span><br style="box-sizing:border-box;" />\r\n ]</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Type"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"checkbox"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"CurrentValue"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"14,16"</span><br style="box-sizing:border-box;" />\r\n }</span>,<br style="box-sizing:border-box;" />\r\n <span data-type="object" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Name"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"請選擇單選按鈕"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"POSPropertyId"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">29</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Required"</span>:<span class="json_boolean" style="box-sizing:border-box;">true</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"details"</span>:<span data-type="array" data-size="2" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>[<br style="box-sizing:border-box;" />\r\n <span data-type="object" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"PosDetailId"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">12</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Value"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"單選項01"</span><br style="box-sizing:border-box;" />\r\n }</span>,<br style="box-sizing:border-box;" />\r\n <span data-type="object" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"PosDetailId"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">13</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Value"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"單選項02"</span><br style="box-sizing:border-box;" />\r\n }</span><br style="box-sizing:border-box;" />\r\n ]</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Type"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"radio"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"CurrentValue"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"13"</span><br style="box-sizing:border-box;" />\r\n }</span>,<br style="box-sizing:border-box;" />\r\n <span data-type="object" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Name"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"請選擇日期"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"POSPropertyId"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">31</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Required"</span>:<span class="json_boolean" style="box-sizing:border-box;">true</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"details"</span>:<span data-type="array" data-size="0" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>[<br style="box-sizing:border-box;" />\r\n<br style="box-sizing:border-box;" />\r\n ]</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Type"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"datetime"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"CurrentValue"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"2016-03-22"</span><br style="box-sizing:border-box;" />\r\n }</span>,<br style="box-sizing:border-box;" />\r\n <span data-type="object" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Name"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"請輸入檔案"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"POSPropertyId"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">30</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Required"</span>:<span class="json_boolean" style="box-sizing:border-box;">true</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"details"</span>:<span data-type="array" data-size="0" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>[<br style="box-sizing:border-box;" />\r\n<br style="box-sizing:border-box;" />\r\n ]</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Type"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"file"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"CurrentValue"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"<a href="http://demo.comm01.com/api/images/logo.png" target="_blank" class="json_link" style="box-sizing:border-box;color:#717171;text-decoration:none;display:inline-block;background-position:0px 0px;">http://demo.comm01.com/api/images/logo.png</a>"</span><br style="box-sizing:border-box;" />\r\n }</span>,<br style="box-sizing:border-box;" />\r\n <span data-type="object" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Name"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"請輸入多行文本"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"POSPropertyId"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">28</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Required"</span>:<span class="json_boolean" style="box-sizing:border-box;">false</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"details"</span>:<span data-type="array" data-size="0" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>[<br style="box-sizing:border-box;" />\r\n<br style="box-sizing:border-box;" />\r\n ]</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Type"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"textarea"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"CurrentValue"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"多行文本輸入的內容"</span><br style="box-sizing:border-box;" />\r\n }</span>,<br style="box-sizing:border-box;" />\r\n <span data-type="object" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Name"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"請輸入單行文本"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"POSPropertyId"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">27</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Required"</span>:<span class="json_boolean" style="box-sizing:border-box;">true</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"details"</span>:<span data-type="array" data-size="0" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>[<br style="box-sizing:border-box;" />\r\n<br style="box-sizing:border-box;" />\r\n ]</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Type"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"text"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"CurrentValue"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"單行文本輸入的內容"</span><br style="box-sizing:border-box;" />\r\n }</span><br style="box-sizing:border-box;" />\r\n ]</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">,</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"msg"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">""</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">,</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"status"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">100</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">}</span></span></span>\r\n<p>\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><br />\r\n</span> \r\n</p>', 20160323175701.00, '2016-03-22 10:56:46', '2016-03-23 17:57:01'),
(8, 1, 78, '获取會員資料(不包括动态属性)', 'member/GetInfo', 'JSON', 0, 1, 0, NULL, '获取會員資料(不包括动态属性)', '<span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:14px;text-rendering:auto;-webkit-font-smoothing:antialiased;color:#555555;white-space:normal;cursor:pointer;"></span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">{</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"data"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span data-type="object" style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"CommUserId"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">97</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Phone"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"13751041849"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Amount"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">0</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Integral"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">0</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"UserStatus"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"normal"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"CreateUserId"</span>:<span class="json_null" style="box-sizing:border-box;color:#F1592A;font-weight:bold;">null</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"TypeName"</span>:<span class="json_null" style="box-sizing:border-box;color:#F1592A;font-weight:bold;">null</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"CreateDate"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"2016-03-21T16:22:45Z"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"MemberCard"</span>:<span class="json_null" style="box-sizing:border-box;color:#F1592A;font-weight:bold;">null</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Source"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"Android"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"MemberNo"</span>:<span class="json_null" style="box-sizing:border-box;color:#F1592A;font-weight:bold;">null</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"LoginPwd"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"3B31555E794C03EE"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Email"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"13751041849@163.com"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"TypeId"</span>:<span class="json_null" style="box-sizing:border-box;color:#F1592A;font-weight:bold;">null</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"IsPOS"</span>:<span class="json_boolean" style="box-sizing:border-box;">true</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"WarehouseId"</span>:<span class="json_null" style="box-sizing:border-box;color:#F1592A;font-weight:bold;">null</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Id"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">1150</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"MemberName"</span>:<span class="json_null" style="box-sizing:border-box;color:#F1592A;font-weight:bold;">null</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"SiteId"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">1172</span><br style="box-sizing:border-box;" />\r\n }</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">,</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"msg"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">""</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">,</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"status"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">100</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<p>\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">}</span>\r\n</p>\r\n<p>\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><br />\r\n</span>\r\n</p>\r\n<p>\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><br />\r\n</span>\r\n</p>', 20160322161332.00, '2016-03-22 16:13:33', '2016-03-22 16:13:33'),
(9, 1, 78, '修改會員資料(不包括动态属性)', 'member/ModifyInfo', NULL, 1, 1, 0, NULL, '<img src="webkit-fake-url://678a8c35-8ce7-41ae-b803-7fb21c355cd4/image.tiff" />', '<span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:14px;text-rendering:auto;-webkit-font-smoothing:antialiased;color:#555555;white-space:normal;cursor:pointer;"></span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">{</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"data"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_null" style="box-sizing:border-box;color:#F1592A;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">null</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">,</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"msg"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"操作成功"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">,</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"status"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">100</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<p>\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">}</span>\r\n</p>\r\n<p>\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><br />\r\n</span>\r\n</p>\r\n<p>\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><br />\r\n</span>\r\n</p>', 20160322170705.00, '2016-03-22 16:24:04', '2016-03-22 17:07:06'),
(10, 1, 78, '修改會員動態資料(不包括基本属性)', 'member/UpdateMemberPropertys', 'JSON', 1, 1, 0, NULL, '<img src="webkit-fake-url://24789bbe-063e-480b-aa36-9d61a656eaec/image.tiff" />', '<span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:14px;text-rendering:auto;-webkit-font-smoothing:antialiased;color:#555555;white-space:normal;cursor:pointer;"></span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">{</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"data"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_null" style="box-sizing:border-box;color:#F1592A;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">null</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">,</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"msg"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"操作成功"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">,</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"status"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">100</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<p>\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">}</span>\r\n</p>\r\n<p>\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><br />\r\n</span>\r\n</p>\r\n<p>\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><br />\r\n</span>\r\n</p>', 20160322170717.00, '2016-03-22 16:28:14', '2016-03-22 17:07:17'),
(11, 1, 78, '修改會員密碼', 'member/ChangePwd', 'JSON', 1, 1, 0, NULL, '修改會員密碼', '<span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:14px;text-rendering:auto;-webkit-font-smoothing:antialiased;color:#555555;white-space:normal;cursor:pointer;"></span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">{</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"data"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_null" style="box-sizing:border-box;color:#F1592A;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">null</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">,</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"msg"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"操作成功"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">,</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"status"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">100</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<p>\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">}</span>\r\n</p>\r\n<p>\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><br />\r\n</span>\r\n</p>\r\n<p>\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><br />\r\n</span>\r\n</p>', 20160322172731.00, '2016-03-22 16:46:37', '2016-03-22 17:27:31'),
(12, 1, 78, '重新發送激活郵件(不需要登錄)', 'account/ReSendActiveEmail', 'JSON', 1, 0, 0, NULL, '重新發送激活郵件', '<span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:14px;text-rendering:auto;-webkit-font-smoothing:antialiased;color:#555555;white-space:normal;cursor:pointer;"></span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">{</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"data"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_null" style="box-sizing:border-box;color:#F1592A;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">null</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">,</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"msg"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"你已激活成功,不需要再次激活"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">,</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"status"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">100</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<p>\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">}</span>\r\n</p>\r\n<p>\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><br />\r\n</span>\r\n</p>\r\n<p>\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><br />\r\n</span>\r\n</p>', 20160322172728.00, '2016-03-22 17:13:50', '2016-03-22 17:27:28'),
(13, 1, 78, '發送重置密碼郵件(不需要登錄)', 'account/ReSetPwdEmail', 'JSON', 1, 0, 0, NULL, '發送重置密碼郵件(不需要登錄)', '<span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:14px;text-rendering:auto;-webkit-font-smoothing:antialiased;color:#555555;white-space:normal;cursor:pointer;"></span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">{</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"data"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_null" style="box-sizing:border-box;color:#F1592A;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">null</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">,</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"msg"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"郵件已經發送,請到郵箱查看"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">,</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"status"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">100</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">}</span>', 20160322172722.00, '2016-03-22 17:27:22', '2016-03-22 17:27:22'),
(14, 1, 78, '地址──多級聯動(最多4級)', 'address/GetAreaList', 'JSON', 0, 0, 0, NULL, '收貨地址,多級聯動(最多4級),根據參數父級的Id,和參數deep深度。\r\n<div>\r\n deep:從1開始。\r\n</div>', '<span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:14px;text-rendering:auto;-webkit-font-smoothing:antialiased;color:#555555;white-space:normal;cursor:pointer;"></span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:14px;text-rendering:auto;-webkit-font-smoothing:antialiased;color:#555555;white-space:normal;cursor:pointer;"></span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">{</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"data"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span data-type="array" data-size="2" style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>[<br style="box-sizing:border-box;" />\r\n <span data-type="object" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Name"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"美国"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"FreightAreaID"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">607</span><br style="box-sizing:border-box;" />\r\n }</span>,<br style="box-sizing:border-box;" />\r\n <span data-type="object" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Name"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"中國"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"FreightAreaID"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">602</span><br style="box-sizing:border-box;" />\r\n }</span><br style="box-sizing:border-box;" />\r\n ]</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">,</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"msg"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">""</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">,</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"status"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">100</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">}</span></span>\r\n<p>\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><br />\r\n</span> \r\n</p>', 20160325101605.00, '2016-03-23 14:18:01', '2016-03-25 10:16:05'),
(15, 1, 78, '地址──多級聯動(一次性獲取所有數據)', 'address/getAreaAll', 'JSON', 0, 0, 0, NULL, '地址──多級聯動(一次性獲取所有數據)', '<span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:14px;text-rendering:auto;-webkit-font-smoothing:antialiased;color:#555555;white-space:normal;cursor:pointer;"></span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">{</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"status"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">100</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">,</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"msg"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">""</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">,</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"data"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span data-type="array" data-size="2" style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>[<br style="box-sizing:border-box;" />\r\n <span data-type="object" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"FreightAreaID"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">607</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Name"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"美国"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Deep"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">1</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Childs"</span>:<span data-type="array" data-size="0" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>[<br style="box-sizing:border-box;" />\r\n<br style="box-sizing:border-box;" />\r\n ]</span><br style="box-sizing:border-box;" />\r\n }</span>,<br style="box-sizing:border-box;" />\r\n <span data-type="object" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"FreightAreaID"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">602</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Name"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"中國"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Deep"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">1</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Childs"</span>:<span data-type="array" data-size="1" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>[<br style="box-sizing:border-box;" />\r\n <span data-type="object" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"FreightAreaID"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">603</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Name"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"廣東"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Deep"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">2</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Childs"</span>:<span data-type="array" data-size="2" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>[<br style="box-sizing:border-box;" />\r\n <span data-type="object" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"FreightAreaID"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">610</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Name"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"广州"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Deep"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">3</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Childs"</span>:<span data-type="array" data-size="0" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>[<br style="box-sizing:border-box;" />\r\n<br style="box-sizing:border-box;" />\r\n ]</span><br style="box-sizing:border-box;" />\r\n }</span>,<br style="box-sizing:border-box;" />\r\n <span data-type="object" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"FreightAreaID"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">609</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Name"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"深圳"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Deep"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">3</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Childs"</span>:<span data-type="array" data-size="1" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>[<br style="box-sizing:border-box;" />\r\n <span data-type="object" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"FreightAreaID"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">611</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Name"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"福田"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Deep"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">4</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Childs"</span>:<span data-type="array" data-size="1" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>[<br style="box-sizing:border-box;" />\r\n <span data-type="object" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"FreightAreaID"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">612</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Name"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"水圍"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Deep"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">5</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Childs"</span>:<span data-type="array" data-size="0" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>[<br style="box-sizing:border-box;" />\r\n<br style="box-sizing:border-box;" />\r\n ]</span><br style="box-sizing:border-box;" />\r\n }</span><br style="box-sizing:border-box;" />\r\n ]</span><br style="box-sizing:border-box;" />\r\n }</span><br style="box-sizing:border-box;" />\r\n ]</span><br style="box-sizing:border-box;" />\r\n }</span><br style="box-sizing:border-box;" />\r\n ]</span><br style="box-sizing:border-box;" />\r\n }</span><br style="box-sizing:border-box;" />\r\n ]</span><br style="box-sizing:border-box;" />\r\n }</span><br style="box-sizing:border-box;" />\r\n ]</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<p>\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">}</span>\r\n</p>\r\n<p>\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><br />\r\n</span>\r\n</p>\r\n<p>\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><br />\r\n</span>\r\n</p>', 20160323170522.00, '2016-03-23 16:56:13', '2016-03-23 17:05:22'),
(16, 1, 78, '收貨地址列表', 'address/GetList', 'JSON', 0, 0, 0, NULL, '會員收貨地址列表數據,沒有分頁。', '<span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:14px;text-rendering:auto;-webkit-font-smoothing:antialiased;color:#555555;white-space:normal;cursor:pointer;"></span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:14px;text-rendering:auto;-webkit-font-smoothing:antialiased;color:#555555;white-space:normal;cursor:pointer;"></span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">{</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"data"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span data-type="array" data-size="1" style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>[<br style="box-sizing:border-box;" />\r\n <span data-type="object" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Address2Name"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"廣東"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"AddressId"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">4458</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"AddressDetail"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"address detail"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Address3"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">609</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Address2"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">603</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Address1"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">602</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"IsDefault"</span>:<span class="json_boolean" style="box-sizing:border-box;">false</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Address3Name"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"深圳"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Address1Name"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"中國"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Address4"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">611</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"ReceiverPhone"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"13751041849"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"ReceiverName"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"袁冬平"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Address4Name"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"福田"</span><br style="box-sizing:border-box;" />\r\n }</span><br style="box-sizing:border-box;" />\r\n ]</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">,</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"msg"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">""</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">,</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"status"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">100</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">}</span></span>\r\n<p>\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><br />\r\n</span> \r\n</p>\r\n<p>\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><br />\r\n</span>\r\n</p>', 20160324095954.00, '2016-03-23 16:59:25', '2016-03-24 09:59:55'),
(17, 1, 78, '新增 OR 修改 收货地址', 'address/AddOrUpdate', 'JSON', 1, 1, 0, NULL, '新增 OR 修改 收货地址\r\n<div>\r\n 新增,没有参数:addressId\r\n</div>\r\n<div>\r\n 修改,添加参数<span style="white-space:normal;">:addressId</span>\r\n</div>', '<span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:14px;text-rendering:auto;-webkit-font-smoothing:antialiased;color:#555555;white-space:normal;cursor:pointer;"></span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">{</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"data"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_null" style="box-sizing:border-box;color:#F1592A;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">null</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">,</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"msg"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"操作成功"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">,</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"status"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">100</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<p>\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">}</span>\r\n</p>\r\n<p>\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><br />\r\n</span>\r\n</p>\r\n<p>\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><br />\r\n</span>\r\n</p>', 20160323170450.00, '2016-03-23 17:04:51', '2016-03-23 17:04:51'),
(18, 1, 78, '設置為默認收貨地址', 'address/SetDefault', 'JSON', 1, 0, 0, NULL, '設置為默認收貨地址<br />', '<span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:14px;text-rendering:auto;-webkit-font-smoothing:antialiased;color:#555555;white-space:normal;cursor:pointer;"></span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">{</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"data"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_null" style="box-sizing:border-box;color:#F1592A;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">null</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">,</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"msg"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"操作成功"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">,</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"status"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">100</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<p>\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">}</span>\r\n</p>\r\n<p>\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><br />\r\n</span>\r\n</p>\r\n<p>\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><br />\r\n</span>\r\n</p>', 20160323172410.00, '2016-03-23 17:24:11', '2016-03-23 17:24:11'),
(19, 1, 78, '刪除收貨地址', 'address/DeleteList', 'JSON', 1, 1, 0, NULL, '<p>\r\n addressIds=4454(刪除一條數據)\r\n</p>\r\n<p>\r\n 當參數addressIds傳遞數組時,可刪除多條數據,(暫無次功能)。\r\n</p>', '<span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:14px;text-rendering:auto;-webkit-font-smoothing:antialiased;color:#555555;white-space:normal;cursor:pointer;"></span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">{</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"data"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_null" style="box-sizing:border-box;color:#F1592A;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">null</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">,</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"msg"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"操作成功"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">,</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"status"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">100</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<p>\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">}</span>\r\n</p>\r\n<p>\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><br />\r\n</span>\r\n</p>\r\n<p>\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><br />\r\n</span>\r\n</p>', 20160323175329.00, '2016-03-23 17:50:44', '2016-03-23 17:53:29'),
(20, 1, 79, '获取商品类目(多级)', 'class/GetListByParentId', 'JSON', 0, 0, 0, NULL, '获取商品类目(多级)', '<span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:14px;text-rendering:auto;-webkit-font-smoothing:antialiased;color:#555555;white-space:normal;cursor:pointer;"></span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">{</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"status"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">100</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">,</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"msg"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">""</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">,</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"data"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span data-type="array" data-size="4" style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>[<br style="box-sizing:border-box;" />\r\n <span data-type="object" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"ClassID"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">10618</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Name"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"第一级類別04"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Summary"</span>:<span class="json_null" style="box-sizing:border-box;color:#F1592A;font-weight:bold;">null</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"ImgPath"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">""</span><br style="box-sizing:border-box;" />\r\n }</span>,<br style="box-sizing:border-box;" />\r\n <span data-type="object" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"ClassID"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">10617</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Name"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"第一级類別03"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Summary"</span>:<span class="json_null" style="box-sizing:border-box;color:#F1592A;font-weight:bold;">null</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"ImgPath"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">""</span><br style="box-sizing:border-box;" />\r\n }</span>,<br style="box-sizing:border-box;" />\r\n <span data-type="object" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"ClassID"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">10616</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Name"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"第一级類別02"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Summary"</span>:<span class="json_null" style="box-sizing:border-box;color:#F1592A;font-weight:bold;">null</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"ImgPath"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">""</span><br style="box-sizing:border-box;" />\r\n }</span>,<br style="box-sizing:border-box;" />\r\n <span data-type="object" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"ClassID"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">10614</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Name"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"第一级類別01"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Summary"</span>:<span class="json_null" style="box-sizing:border-box;color:#F1592A;font-weight:bold;">null</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"ImgPath"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">""</span><br style="box-sizing:border-box;" />\r\n }</span><br style="box-sizing:border-box;" />\r\n ]</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<p>\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">}</span>\r\n</p>\r\n<p>\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><br />\r\n</span>\r\n</p>\r\n<p>\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><br />\r\n</span>\r\n</p>', 20160325114012.00, '2016-03-25 11:40:13', '2016-03-25 11:40:13'),
(21, 1, 79, '商品類目根據第一級的Id獲取2、3級的類目數據', 'class/Get23List', 'JSON', 0, 0, 0, NULL, '用於商品類目的第三種佈局', '<span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:14px;text-rendering:auto;-webkit-font-smoothing:antialiased;color:#555555;white-space:normal;cursor:pointer;"></span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">{</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"data"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span data-type="array" data-size="1" style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>[<br style="box-sizing:border-box;" />\r\n <span data-type="object" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Name"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"第二级類別01"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Child"</span>:<span data-type="array" data-size="1" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>[<br style="box-sizing:border-box;" />\r\n <span data-type="object" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Name"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"第三级类目01"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Child"</span>:<span data-type="array" data-size="0" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>[<br style="box-sizing:border-box;" />\r\n<br style="box-sizing:border-box;" />\r\n ]</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"ImgPath"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">""</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Summary"</span>:<span class="json_null" style="box-sizing:border-box;color:#F1592A;font-weight:bold;">null</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"ClassID"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">10620</span><br style="box-sizing:border-box;" />\r\n }</span><br style="box-sizing:border-box;" />\r\n ]</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"ImgPath"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">""</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Summary"</span>:<span class="json_null" style="box-sizing:border-box;color:#F1592A;font-weight:bold;">null</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"ClassID"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">10615</span><br style="box-sizing:border-box;" />\r\n }</span><br style="box-sizing:border-box;" />\r\n ]</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">,</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"msg"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">""</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">,</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"status"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">100</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<p>\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">}</span>\r\n</p>\r\n<p>\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><br />\r\n</span>\r\n</p>\r\n<p>\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><br />\r\n</span>\r\n</p>', 20160325153815.00, '2016-03-25 15:27:20', '2016-03-25 15:38:15'),
(22, 1, 80, '商品列表', 'eshopproduct/GetList', 'JSON', 0, 0, 0, NULL, '獲取商品列表(沒有分頁)\r\n<div>\r\n 也可用在搜尋商品\r\n</div>', '<span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:14px;text-rendering:auto;-webkit-font-smoothing:antialiased;color:#555555;white-space:normal;cursor:pointer;"></span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><br />\r\n{<br />\r\n "status": 100,<br />\r\n "msg": "",<br />\r\n "data": {<br />\r\n "list": [<br />\r\n {<br />\r\n "POSProductId": 34099,<br />\r\n "EshopProductId": 125,<br />\r\n "ProductName": "大衣",<br />\r\n "ImgPath": "http://file01.easesales.com/upload/4152A75D6FE7C569/201603/4840376957286900356.jpg"<br />\r\n }<br />\r\n ],<br />\r\n "PriceMax": 100.0,<br />\r\n "PriceMin": 100.0,<br />\r\n "SalesPriceMax": 99.0,<br />\r\n "SalesPriceMin": 99.0<br />\r\n }<br />\r\n}<br />\r\n--------------------------------------------------<br />\r\n<br />\r\n<br />\r\n</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"></span>', 20160329110039.00, '2016-03-25 17:43:17', '2016-03-29 11:00:39'),
(23, 1, 80, '商品列表(分頁)', 'eshopproduct/GetPagedList', 'JSON', 0, 0, 0, NULL, '獲取商品列表,分页<br />', '<span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:14px;text-rendering:auto;-webkit-font-smoothing:antialiased;color:#555555;white-space:normal;cursor:pointer;"></span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><br />\r\n{<br />\r\n "status": 100,<br />\r\n "msg": "",<br />\r\n "data": {<br />\r\n "count": 1,<br />\r\n "currentPage": 1,<br />\r\n "totalPages": 1,<br />\r\n "items": [<br />\r\n {<br />\r\n "POSProductId": 34099,<br />\r\n "EshopProductId": 125,<br />\r\n "ProductName": "大衣",<br />\r\n "PriceMax": 100.0,<br />\r\n "PriceMin": 100.0,<br />\r\n "SalesPriceMax": 99.0,<br />\r\n "SalesPriceMin": 99.0,<br />\r\n "ImgPath": "http://file01.easesales.com/upload/4152A75D6FE7C569/201603/4840376957286900356.jpg"<br />\r\n }<br />\r\n ],<br />\r\n "PriceMax": 100.0,<br />\r\n "PriceMin": 100.0,<br />\r\n "SalesPriceMax": 99.0,<br />\r\n "SalesPriceMin": 99.0<br />\r\n }<br />\r\n}<br />\r\n--------------------------------------------------<br />\r\n<br />\r\n</span>\r\n<p>\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><br />\r\n</span> \r\n</p>', 20160329110017.00, '2016-03-25 18:00:55', '2016-03-29 11:00:17'),
(24, 1, 80, '商品詳情', 'eshopproduct/GetDetail', 'JSON', 0, 0, 0, NULL, '獲取商品詳情,不包括屬性', '<span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:14px;text-rendering:auto;-webkit-font-smoothing:antialiased;color:#555555;white-space:normal;cursor:pointer;"></span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:14px;text-rendering:auto;-webkit-font-smoothing:antialiased;color:#555555;white-space:normal;cursor:pointer;"></span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">{</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"data"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span data-type="object" style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"SalesPrice"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">99</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Detail"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">""</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"CanBuyZero"</span>:<span class="json_boolean" style="box-sizing:border-box;">true</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"POSProductId"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">34099</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Prices"</span>:<span class="json_null" style="box-sizing:border-box;color:#F1592A;font-weight:bold;">null</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Price"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">100</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"InventoryQuantity"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">0</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"ProductName"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"大衣"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"ImgPathList"</span>:<span data-type="array" data-size="2" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>[<br style="box-sizing:border-box;" />\r\n <span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"<a href="http://file01.easesales.com/upload/4152A75D6FE7C569/201603/4840376957286900356.jpg" target="_blank" class="json_link" style="box-sizing:border-box;color:#717171;text-decoration:none;display:inline-block;background-position:0px 0px;">http://file01.easesales.com/upload/4152A75D6FE7C569/201603/4840376957286900356.jpg</a>"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"<a href="http://file01.easesales.com/upload/4152A75D6FE7C569/201603/4840376957286900356.jpg" target="_blank" class="json_link" style="box-sizing:border-box;color:#717171;text-decoration:none;display:inline-block;background-position:0px 0px;">http://file01.easesales.com/upload/4152A75D6FE7C569/201603/4840376957286900356.jpg</a>"</span><br style="box-sizing:border-box;" />\r\n ]</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Summary"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">""</span><br style="box-sizing:border-box;" />\r\n }</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">,</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"msg"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">""</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">,</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"status"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">100</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n</span>\r\n<p>\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">}</span></span>\r\n</p>\r\n<p>\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><br />\r\n</span></span>\r\n</p>\r\n<p>\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><br />\r\n</span></span>\r\n</p>\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"></span>', 20160330103653.00, '2016-03-25 18:12:28', '2016-03-30 10:36:53'),
(25, 1, 80, '商品動態屬性', 'eshopproduct/GetProperty', 'JSON', 0, 0, 0, NULL, '根據POS商品Id,獲取商品屬性。(商品動態屬性)', '<span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:14px;text-rendering:auto;-webkit-font-smoothing:antialiased;color:#555555;white-space:normal;cursor:pointer;"></span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:14px;text-rendering:auto;-webkit-font-smoothing:antialiased;color:#555555;white-space:normal;cursor:pointer;"></span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">{</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"data"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span data-type="array" data-size="4" style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>[<br style="box-sizing:border-box;" />\r\n <span data-type="object" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Childs"</span>:<span data-type="array" data-size="2" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>[<br style="box-sizing:border-box;" />\r\n <span data-type="object" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Value"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"台北"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Id"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">725</span><br style="box-sizing:border-box;" />\r\n }</span>,<br style="box-sizing:border-box;" />\r\n <span data-type="object" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Value"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"北京"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Id"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">726</span><br style="box-sizing:border-box;" />\r\n }</span><br style="box-sizing:border-box;" />\r\n ]</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"PropertyName"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"地区"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Id"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">157</span><br style="box-sizing:border-box;" />\r\n }</span>,<br style="box-sizing:border-box;" />\r\n <span data-type="object" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Childs"</span>:<span data-type="array" data-size="3" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>[<br style="box-sizing:border-box;" />\r\n <span data-type="object" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Value"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"S"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Id"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">727</span><br style="box-sizing:border-box;" />\r\n }</span>,<br style="box-sizing:border-box;" />\r\n <span data-type="object" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Value"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"M"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Id"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">728</span><br style="box-sizing:border-box;" />\r\n }</span>,<br style="box-sizing:border-box;" />\r\n <span data-type="object" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Value"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"L"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Id"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">729</span><br style="box-sizing:border-box;" />\r\n }</span><br style="box-sizing:border-box;" />\r\n ]</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"PropertyName"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"尺碼"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Id"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">158</span><br style="box-sizing:border-box;" />\r\n }</span>,<br style="box-sizing:border-box;" />\r\n <span data-type="object" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Childs"</span>:<span data-type="array" data-size="2" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>[<br style="box-sizing:border-box;" />\r\n <span data-type="object" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Value"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"#000000"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Id"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">730</span><br style="box-sizing:border-box;" />\r\n }</span>,<br style="box-sizing:border-box;" />\r\n <span data-type="object" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Value"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"#FF0000"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Id"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">731</span><br style="box-sizing:border-box;" />\r\n }</span><br style="box-sizing:border-box;" />\r\n ]</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"PropertyName"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"色板"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Id"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">159</span><br style="box-sizing:border-box;" />\r\n }</span>,<br style="box-sizing:border-box;" />\r\n <span data-type="object" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Childs"</span>:<span data-type="array" data-size="0" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>[<br style="box-sizing:border-box;" />\r\n<br style="box-sizing:border-box;" />\r\n ]</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"PropertyName"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"屬性圖片"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Id"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">160</span><br style="box-sizing:border-box;" />\r\n }</span><br style="box-sizing:border-box;" />\r\n ]</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">,</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"msg"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">""</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">,</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"status"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">100</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n</span>\r\n<p>\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">}</span></span>\r\n</p>\r\n<p>\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><br />\r\n</span></span>\r\n</p>\r\n<p>\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><br />\r\n</span> \r\n</p>', 20160330104345.00, '2016-03-28 09:52:51', '2016-03-30 10:43:46'),
(26, 1, 80, '点击更多推介商品(分页)', 'EshopProduct/GetMorePagedRecommand', 'JSON', 0, 0, 0, NULL, '点击首页查看更多后,推介商品列表', '{<br />\r\n "status": 100,<br />\r\n "msg": "",<br />\r\n "data": {<br />\r\n "items": [<br />\r\n {<br />\r\n "POSProductId": 0,<br />\r\n "EshopProductId": 124,<br />\r\n "ProductName": "儿童长袖打底衫男童t恤",<br />\r\n "ImgPath": null<br />\r\n },<br />\r\n {<br />\r\n "POSProductId": 0,<br />\r\n "EshopProductId": 125,<br />\r\n "ProductName": "大衣",<br />\r\n "ImgPath": "http://file01.easesales.com/upload/4152A75D6FE7C569/201603/4840376957286900356.jpg"<br />\r\n }<br />\r\n ],<br />\r\n "currentPage": 1,<br />\r\n "totalPages": 1,<br />\r\n "count": 2<br />\r\n }<br />\r\n}<br />\r\n--------------------------------------------------<br />\r\n<br />\r\n<br />', 20160329103822.00, '2016-03-28 10:39:30', '2016-03-29 10:38:23'),
(27, 1, 80, '获取首页推荐商品', 'EshopProduct/getRecommandList', 'JSON', 0, 0, 0, NULL, '获取首页推荐模块', '{<br />\r\n "status": 100,<br />\r\n "msg": "",<br />\r\n "data": [<br />\r\n {<br />\r\n "CmId": 691,<br />\r\n "ProductId": 124,<br />\r\n "ProductName": "儿童长袖打底衫男童t恤",<br />\r\n "Price": 0.0,<br />\r\n "SalesPrice": 0.0,<br />\r\n "ImgPath": null,<br />\r\n "Title": "名称"<br />\r\n },<br />\r\n {<br />\r\n "CmId": 693,<br />\r\n "ProductId": 124,<br />\r\n "ProductName": "儿童长袖打底衫男童t恤",<br />\r\n "Price": 0.0,<br />\r\n "SalesPrice": 0.0,<br />\r\n "ImgPath": null,<br />\r\n "Title": "推荐2"<br />\r\n },<br />\r\n {<br />\r\n "CmId": 693,<br />\r\n "ProductId": 125,<br />\r\n "ProductName": "大衣",<br />\r\n "Price": 0.0,<br />\r\n "SalesPrice": 0.0,<br />\r\n "ImgPath": "http://file01.easesales.com/upload/4152A75D6FE7C569/201603/4840376957286900356.jpg",<br />\r\n "Title": "推荐2"<br />\r\n },<br />\r\n {<br />\r\n "CmId": 694,<br />\r\n "ProductId": 124,<br />\r\n "ProductName": "儿童长袖打底衫男童t恤",<br />\r\n "Price": 0.0,<br />\r\n "SalesPrice": 0.0,<br />\r\n "ImgPath": null,<br />\r\n "Title": "推荐3"<br />\r\n },<br />\r\n {<br />\r\n "CmId": 694,<br />\r\n "ProductId": 125,<br />\r\n "ProductName": "大衣",<br />\r\n "Price": 0.0,<br />\r\n "SalesPrice": 0.0,<br />\r\n "ImgPath": "http://file01.easesales.com/upload/4152A75D6FE7C569/201603/4840376957286900356.jpg",<br />\r\n "Title": "推荐3"<br />\r\n }<br />\r\n ]<br />\r\n}<br />\r\n--------------------------------------------------<br />\r\n<br />', 20160329103250.00, '2016-03-29 10:32:51', '2016-03-29 10:32:51'),
(28, 1, 80, '点击更多推荐列表', 'EshopProduct/GetMoreRecommand', NULL, 0, 0, 0, NULL, '点击首页的查看更多', '{<br />\r\n "status": 100,<br />\r\n "msg": "",<br />\r\n "data": [<br />\r\n {<br />\r\n "POSProductId": 34094,<br />\r\n "EshopProductId": 124,<br />\r\n "ProductName": "儿童长袖打底衫男童t恤",<br />\r\n "ImgPath": null<br />\r\n },<br />\r\n {<br />\r\n "POSProductId": 34099,<br />\r\n "EshopProductId": 125,<br />\r\n "ProductName": "大衣",<br />\r\n "ImgPath": "http://file01.easesales.com/upload/4152A75D6FE7C569/201603/4840376957286900356.jpg"<br />\r\n }<br />\r\n ]<br />\r\n}<br />\r\n--------------------------------------------------<br />\r\n<br />', 20160329103954.00, '2016-03-29 10:39:37', '2016-03-29 10:39:55'),
(29, 1, 80, '根據posProductId查詢子產品', 'eshopproduct/GetChiLdProducts', 'JSON', 0, 0, 0, NULL, '根據posProductId查詢子產品', '<main class="row-fluid" style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:14px;text-rendering:auto;-webkit-font-smoothing:antialiased;color:#555555;white-space:normal;cursor:pointer;"></span> \r\n<p style="margin-top:0px;margin-bottom:0px;font-size:14px;line-height:normal;font-family:Menlo;color:#555555;">\r\n <span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:14px;text-rendering:auto;-webkit-font-smoothing:antialiased;color:#555555;white-space:normal;cursor:pointer;"></span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">{</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"data"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span data-type="array" data-size="2" style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>[<br style="box-sizing:border-box;" />\r\n <span data-type="object" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"SalesPrice"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">99</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Inventory"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">0</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"POSChildProductId"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">22148</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"SalesPropertys"</span>:<span data-type="array" data-size="4" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>[<br style="box-sizing:border-box;" />\r\n <span data-type="object" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"PropertyDetailId"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">0</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"PropertyId"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">160</span><br style="box-sizing:border-box;" />\r\n }</span>,<br style="box-sizing:border-box;" />\r\n <span data-type="object" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"PropertyDetailId"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">730</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"PropertyId"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">159</span><br style="box-sizing:border-box;" />\r\n }</span>,<br style="box-sizing:border-box;" />\r\n <span data-type="object" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"PropertyDetailId"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">728</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"PropertyId"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">158</span><br style="box-sizing:border-box;" />\r\n }</span>,<br style="box-sizing:border-box;" />\r\n <span data-type="object" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"PropertyDetailId"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">726</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"PropertyId"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">157</span><br style="box-sizing:border-box;" />\r\n }</span><br style="box-sizing:border-box;" />\r\n ]</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Price"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">100</span><br style="box-sizing:border-box;" />\r\n }</span>,<br style="box-sizing:border-box;" />\r\n <span data-type="object" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"SalesPrice"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">99</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Inventory"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">0</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"POSChildProductId"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">22149</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"SalesPropertys"</span>:<span data-type="array" data-size="4" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>[<br style="box-sizing:border-box;" />\r\n <span data-type="object" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"PropertyDetailId"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">726</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"PropertyId"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">157</span><br style="box-sizing:border-box;" />\r\n }</span>,<br style="box-sizing:border-box;" />\r\n <span data-type="object" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"PropertyDetailId"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">729</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"PropertyId"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">158</span><br style="box-sizing:border-box;" />\r\n }</span>,<br style="box-sizing:border-box;" />\r\n <span data-type="object" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"PropertyDetailId"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">730</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"PropertyId"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">159</span><br style="box-sizing:border-box;" />\r\n }</span>,<br style="box-sizing:border-box;" />\r\n <span data-type="object" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"PropertyDetailId"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">0</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"PropertyId"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">160</span><br style="box-sizing:border-box;" />\r\n }</span><br style="box-sizing:border-box;" />\r\n ]</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Price"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">100</span><br style="box-sizing:border-box;" />\r\n }</span><br style="box-sizing:border-box;" />\r\n ]</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">,</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"msg"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">""</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">,</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"status"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">100</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">}</span>\r\n</p>\r\n<p style="margin-top:0px;margin-bottom:0px;font-size:14px;line-height:normal;font-family:Menlo;color:#555555;">\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><br />\r\n</span>\r\n</p>\r\n<p style="margin-top:0px;margin-bottom:0px;font-size:14px;line-height:normal;font-family:Menlo;color:#555555;">\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><br />\r\n</span>\r\n</p>\r\n<br />\r\n</main>', 20160330115654.00, '2016-03-29 10:54:42', '2016-03-30 11:56:55'),
(31, 1, 81, '添加購物車', 'shopcart/Add', 'JSON', 1, 1, 0, NULL, '添加購物車', '<span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:14px;text-rendering:auto;-webkit-font-smoothing:antialiased;color:#555555;white-space:normal;cursor:pointer;"></span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">{</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"data"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span data-type="object" style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"cartId"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">65433</span><br style="box-sizing:border-box;" />\r\n }</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">,</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"msg"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">""</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">,</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"status"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">100</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<p>\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">}</span>\r\n</p>\r\n<p>\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><br />\r\n</span>\r\n</p>\r\n<p>\r\n <span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"><br />\r\n</span>\r\n</p>', 20160401115046.00, '2016-03-30 11:31:37', '2016-04-01 11:50:47'),
(32, 1, 81, '查看購物車', 'shopcart/GetPagedList', 'JSON', 0, 1, 0, NULL, '查看購物車', '<span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:14px;text-rendering:auto;-webkit-font-smoothing:antialiased;color:#555555;white-space:normal;cursor:pointer;"></span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">{</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"status"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">100</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">,</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"msg"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">""</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">,</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"data"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span data-type="object" style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"items"</span>:<span data-type="array" data-size="1" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>[<br style="box-sizing:border-box;" />\r\n <span data-type="object" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"EshopProductId"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">125</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"POSChildProductId"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">22142</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Price"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">123.75</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"ProductName"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"大衣"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"ImgPath"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"<a href="http://file01.easesales.com/upload/4152A75D6FE7C569/201603/4840376957286900356.jpg" target="_blank" class="json_link" style="box-sizing:border-box;color:#717171;text-decoration:none;display:inline-block;background-position:0px 0px;">http://file01.easesales.com/upload/4152A75D6FE7C569/201603/4840376957286900356.jpg</a>"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"SalesPropertys"</span>:<span data-type="array" data-size="4" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>[<br style="box-sizing:border-box;" />\r\n <span data-type="object" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"ShowType"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">0</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"PropertyName"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"地区"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Value"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"台北"</span><br style="box-sizing:border-box;" />\r\n }</span>,<br style="box-sizing:border-box;" />\r\n <span data-type="object" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"ShowType"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">0</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"PropertyName"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"尺碼"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Value"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"S"</span><br style="box-sizing:border-box;" />\r\n }</span>,<br style="box-sizing:border-box;" />\r\n <span data-type="object" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"ShowType"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">1</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"PropertyName"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"色板"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Value"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"#FF0000"</span><br style="box-sizing:border-box;" />\r\n }</span>,<br style="box-sizing:border-box;" />\r\n <span data-type="object" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"ShowType"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">2</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"PropertyName"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"屬性圖片"</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Value"</span>:<span class="json_null" style="box-sizing:border-box;color:#F1592A;font-weight:bold;">null</span><br style="box-sizing:border-box;" />\r\n }</span><br style="box-sizing:border-box;" />\r\n ]</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Quantity"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">1</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"CanBuy"</span>:<span class="json_boolean" style="box-sizing:border-box;">false</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"InventoryQuantity"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">0</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"CannotBuyErrMsg"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">"商品沒有庫存"</span><br style="box-sizing:border-box;" />\r\n }</span><br style="box-sizing:border-box;" />\r\n ]</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"currentPage"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">1</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"totalPages"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">1</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"count"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">1</span><br style="box-sizing:border-box;" />\r\n }</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">}</span>', 20160401115022.00, '2016-03-30 17:22:25', '2016-04-01 11:50:23'),
(33, 1, 81, '修改購物車', 'shopcart/Update', 'JSON', 1, 1, 0, NULL, '修改購物車', '<div class="col-md-7" style="box-sizing:border-box;position:relative;min-height:1px;padding:0px;float:left;width:1120px;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">\r\n <div id="json-target" style="box-sizing:border-box;height:510px;padding:20px;border-right-style:solid;border-right-width:1px;border-right-color:#DDDDDD;border-bottom-style:solid;border-bottom-width:1px;border-bottom-color:#DDDDDD;border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-right-radius:0px;border-bottom-left-radius:0px;resize:none;overflow-y:scroll;outline:none;">\r\n <span data-type="object" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"status"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">100</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"msg"</span>:<span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;">""</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"data"</span>:<span data-type="object" style="box-sizing:border-box;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"IsChecked"</span>:<span class="json_boolean" style="box-sizing:border-box;">false</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Quantity"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">6</span><br style="box-sizing:border-box;" />\r\n }</span><br style="box-sizing:border-box;" />\r\n}</span>\r\n </div>\r\n <div>\r\n <span data-type="object" style="box-sizing:border-box;"><br />\r\n</span>\r\n </div>\r\n <form id="form-save" action="http://json.cn/main/save.html" method="POST" style="box-sizing:border-box;">\r\n </form>\r\n</div>', 20160401115010.00, '2016-03-30 18:19:10', '2016-04-01 11:50:11'),
(34, 1, 81, '刪除購物車', 'shopcart/DeleteList', 'JSON', 1, 1, 0, NULL, '刪除購物車<br />', '<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">{</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"status"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">100</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">,</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"msg"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">""</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">,</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"data"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span data-type="object" style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>{<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"IsChecked"</span>:<span class="json_boolean" style="box-sizing:border-box;">false</span>,<br style="box-sizing:border-box;" />\r\n <span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;">"Quantity"</span>:<span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;">6</span><br style="box-sizing:border-box;" />\r\n }</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">}</span><br />', 20160401115000.00, '2016-03-30 18:21:39', '2016-04-01 11:50:00'),
(35, 1, 81, '購物車要結算的商品檢測', 'checkout/check', 'JSON', 1, 1, 0, NULL, '購物車要結算的商品檢測', '<span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:14px;text-rendering:auto;-webkit-font-smoothing:antialiased;color:#555555;white-space:normal;cursor:pointer;"></span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">{</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"status"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_number" style="box-sizing:border-box;color:#25AAE2;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">100</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">,</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"msg"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span class="json_string" style="box-sizing:border-box;color:#3AB54A;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">""</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">,</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;"> </span><span class="json_key" style="box-sizing:border-box;color:#92278F;font-weight:bold;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;">"data"</span><span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">:</span><span data-type="array" data-size="0" style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;"><span class="fa fa-minus-square-o" style="box-sizing:border-box;display:inline-block;line-height:1;font-family:FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;cursor:pointer;"></span>[<br style="box-sizing:border-box;" />\r\n<br style="box-sizing:border-box;" />\r\n ]</span><br style="box-sizing:border-box;color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;" />\r\n<span style="color:#555555;font-family:Menlo, Monaco, Consolas, \'Courier New\', monospace, \'Helvetica Neue\', Helvetica, Arial, sans-serif, 微软雅黑, 黑体;font-size:14px;white-space:normal;background-color:#FFFFFF;">}</span>', 20160401123905.00, '2016-04-01 11:49:44', '2016-04-01 12:39:05'),
(36, 1, 82, '獲取送貨方式', 'checkout/GetSendType', 'JSON', 0, 1, 0, NULL, '獲取送貨方式', '<p style="margin-top:0px;margin-bottom:0px;font-size:14px;line-height:normal;font-family:Menlo;color:#555555;">\r\n {\r\n</p>\r\n<p style="margin-top:0px;margin-bottom:0px;font-size:14px;line-height:normal;font-family:Menlo;color:#92278F;">\r\n <b>"status"</b>:<b>100</b>,\r\n</p>\r\n<p style="margin-top:0px;margin-bottom:0px;font-size:14px;line-height:normal;font-family:Menlo;color:#555555;">\r\n <b>"msg"</b>:<b>""</b>,\r\n</p>\r\n<p style="margin-top:0px;margin-bottom:0px;font-size:14px;line-height:normal;font-family:Menlo;color:#555555;">\r\n <b>"data"</b>:[\r\n</p>\r\n<p style="margin-top:0px;margin-bottom:0px;font-size:14px;line-height:normal;font-family:Menlo;color:#555555;">\r\n {\r\n</p>\r\n<p style="margin-top:0px;margin-bottom:0px;font-size:14px;line-height:normal;font-family:Menlo;color:#555555;">\r\n <b>"Flag"</b>:<b>2</b>,\r\n</p>\r\n<p style="margin-top:0px;margin-bottom:0px;font-size:14px;line-height:normal;font-family:Menlo;color:#555555;">\r\n <b>"Enable"</b>:true,\r\n</p>\r\n<p style="margin-top:0px;margin-bottom:0px;font-size:14px;line-height:normal;font-family:Menlo;color:#92278F;">\r\n <b>"Content”:”</b><b>送貨說明</b><b>”</b>\r\n</p>\r\n<p style="margin-top:0px;margin-bottom:0px;font-size:14px;line-height:normal;font-family:Menlo;color:#92278F;">\r\n <b> },</b>\r\n</p>\r\n<p style="margin-top:0px;margin-bottom:0px;font-size:14px;line-height:normal;font-family:Menlo;color:#92278F;">\r\n <b> {“Enable"</b>:true,\r\n</p>\r\n<p style="margin-top:0px;margin-bottom:0px;font-size:14px;line-height:normal;font-family:Menlo;color:#92278F;">\r\n <b>"Content”:”</b><b>自取說明</b><b>”,”Flag"</b>:<b>1</b>,\r\n</p>\r\n<p style="margin-top:0px;margin-bottom:0px;font-size:14px;line-height:normal;font-family:Menlo;color:#555555;">\r\n <b>"ZiQuList"</b>:[\r\n</p>\r\n<p style="margin-top:0px;margin-bottom:0px;font-size:14px;line-height:normal;font-family:Menlo;color:#555555;">\r\n {\r\n</p>\r\n<p style="margin-top:0px;margin-bottom:0px;font-size:14px;line-height:normal;font-family:Menlo;color:#555555;">\r\n <b>"ShopName"</b>:<b>"</b><b>自取</b><b>"</b>,\r\n</p>\r\n<p style="margin-top:0px;margin-bottom:0px;font-size:14px;line-height:normal;font-family:Menlo;color:#555555;">\r\n <b>"Tel"</b>:<b>"123456"</b>,\r\n</p>\r\n<p style="margin-top:0px;margin-bottom:0px;font-size:14px;line-height:normal;font-family:Menlo;color:#555555;">\r\n <b>"Description"</b>:<b>"</b><b>自取</b><b>"</b>\r\n</p>\r\n<p style="margin-top:0px;margin-bottom:0px;font-size:14px;line-height:normal;font-family:Menlo;color:#555555;">\r\n },\r\n</p>\r\n<p style="margin-top:0px;margin-bottom:0px;font-size:14px;line-height:normal;font-family:Menlo;color:#555555;">\r\n {\r\n</p>\r\n<p style="margin-top:0px;margin-bottom:0px;font-size:14px;line-height:normal;font-family:Menlo;color:#555555;">\r\n <b>"ShopName"</b>:<b>"</b><b>自取站点</b><b>1"</b>,\r\n</p>\r\n<p style="margin-top:0px;margin-bottom:0px;font-size:14px;line-height:normal;font-family:Menlo;color:#555555;">\r\n <b>"Tel"</b>:<b>"1234567"</b>,\r\n</p>\r\n<p style="margin-top:0px;margin-bottom:0px;font-size:14px;line-height:normal;font-family:Menlo;color:#555555;">\r\n <b>"Description"</b>:<b>"</b><b>工作时间</b><b> </b><b>:</b><b>08:30 — 22:30"</b>\r\n</p>\r\n<p style="margin-top:0px;margin-bottom:0px;font-size:14px;line-height:normal;font-family:Menlo;color:#555555;">\r\n }\r\n</p>\r\n<p style="margin-top:0px;margin-bottom:0px;font-size:14px;line-height:normal;font-family:Menlo;color:#555555;">\r\n ]\r\n</p>\r\n<p style="margin-top:0px;margin-bottom:0px;font-size:14px;line-height:normal;font-family:Menlo;color:#555555;">\r\n }\r\n</p>\r\n<p style="margin-top:0px;margin-bottom:0px;font-size:14px;line-height:normal;font-family:Menlo;color:#555555;">\r\n ]\r\n</p>\r\n<p style="margin-top:0px;margin-bottom:0px;font-size:14px;line-height:normal;font-family:Menlo;color:#555555;">\r\n }\r\n</p>\r\n<div>\r\n <br />\r\n</div>', 20160401122012.00, '2016-04-01 12:20:13', '2016-04-01 12:20:13'),
(37, 1, 82, '获取运费', 'checkout/GetSendPrice', 'JSON', 0, 0, 0, NULL, NULL, NULL, 20160401150640.00, '2016-04-01 15:06:40', '2016-04-01 15:06:40');
/*!40000 ALTER TABLE `method` ENABLE KEYS */;
-- 导出 表 apidb.methodparameter 结构
CREATE TABLE IF NOT EXISTS `methodparameter` (
`Id` int(11) NOT NULL AUTO_INCREMENT,
`MethodId` int(11) NOT NULL,
`Type` int(11) NOT NULL,
`Name` varchar(100) DEFAULT NULL,
`DataType` longtext,
`IsRequired` tinyint(1) NOT NULL,
`DefaultValue` longtext,
`Description` varchar(1000) DEFAULT NULL,
`Sort` decimal(18,2) NOT NULL,
`CreateDate` datetime DEFAULT NULL,
`UpdateDate` datetime NOT NULL,
PRIMARY KEY (`Id`)
) ENGINE=InnoDB AUTO_INCREMENT=198 DEFAULT CHARSET=utf8;
-- 正在导出表 apidb.methodparameter 的数据:~186 rows (大约)
/*!40000 ALTER TABLE `methodparameter` DISABLE KEYS */;
INSERT INTO `methodparameter` (`Id`, `MethodId`, `Type`, `Name`, `DataType`, `IsRequired`, `DefaultValue`, `Description`, `Sort`, `CreateDate`, `UpdateDate`) VALUES
(1, 2, 1, 'siteId', 'int', 1, NULL, '<p>\r\n 網站Id\r\n</p>', 20160321143315.00, '2016-03-18 15:25:53', '2016-03-21 14:33:16'),
(2, 3, 1, 'siteId', 'int', 1, NULL, '<p style="margin-top:0px;margin-bottom:0px;line-height:normal;font-family:Times;-webkit-text-stroke-color:#000000;-webkit-text-stroke-width:initial;">\r\n 网站Id\r\n</p>', 20160321123245.00, '2016-03-18 15:26:49', '2016-03-21 12:32:45'),
(4, 4, 1, 'siteId', 'int', 1, NULL, ' \r\n ', 20160318161123.00, '2016-03-18 16:11:23', '2016-03-18 16:11:23'),
(5, 5, 1, 'userId', 'int', 1, NULL, '商家Id', 20160318161209.00, '2016-03-18 16:11:36', '2016-03-18 16:12:09'),
(8, 2, 1, 'key', 'String', 0, NULL, '密鑰', 20160321113119.00, '2016-03-21 11:31:20', '2016-03-21 11:31:20'),
(9, 2, 1, 'langId', 'int', 1, NULL, ' 語言的Id\r\n ', 20160321144446.00, '2016-03-21 11:36:14', '2016-03-21 14:44:47'),
(10, 3, 1, 'key', 'String', 0, NULL, '<p style="margin-top:0px;margin-bottom:0px;line-height:normal;font-family:Tahoma;-webkit-text-stroke-color:#000000;-webkit-text-stroke-width:initial;">\r\n 密鑰\r\n</p>', 20160321123330.00, '2016-03-21 12:33:31', '2016-03-21 12:33:31'),
(11, 3, 1, 'langId', 'int', 1, NULL, ' <p style="margin-top:0px;margin-bottom:0px;line-height:normal;font-family:Tahoma;-webkit-text-stroke-color:#000000;-webkit-text-stroke-width:initial;">\r\n 語言Id\r\n</p>\r\n ', 20160321144457.00, '2016-03-21 12:43:33', '2016-03-21 14:44:58'),
(12, 4, 1, 'key', 'String', 1, NULL, '<p style="margin-top:0px;margin-bottom:0px;line-height:normal;font-family:Tahoma;-webkit-text-stroke-color:#000000;-webkit-text-stroke-width:initial;">\r\n 密鑰\r\n</p>', 20160321143709.00, '2016-03-21 14:37:09', '2016-03-21 14:37:09'),
(13, 4, 1, 'langId', 'int', 1, NULL, ' <p style="margin-top:0px;margin-bottom:0px;line-height:normal;font-family:Tahoma;-webkit-text-stroke-color:#000000;-webkit-text-stroke-width:initial;">\r\n 語言Id\r\n</p>\r\n ', 20160321144520.00, '2016-03-21 14:37:54', '2016-03-21 14:45:20'),
(16, 1, 1, 'siteId', 'int', 1, NULL, '網站Id', 20160321162731.00, '2016-03-21 16:27:31', '2016-03-21 16:27:31'),
(17, 1, 1, 'key', 'String', 0, NULL, '密鑰', 20160321162801.00, '2016-03-21 16:28:02', '2016-03-21 16:28:02'),
(18, 1, 1, 'langId', 'int', 1, NULL, '語言Id', 20160321162813.00, '2016-03-21 16:28:13', '2016-03-21 16:28:13'),
(19, 1, 1, 'deviceType', 'int', 1, NULL, ' 設備類型(android:0;iOS:1)\r\n ', 20160322173610.00, '2016-03-21 16:28:50', '2016-03-22 17:36:10'),
(20, 1, 1, 'email', 'String', 1, NULL, '<span style="white-space:normal;">郵箱必填</span>', 20160323110914.00, '2016-03-21 16:29:44', '2016-03-23 11:09:14'),
(21, 1, 1, 'phone', 'String', 1, NULL, '手機號碼:會員激活后,可用手機號碼登錄。', 20160323111111.00, '2016-03-21 16:30:07', '2016-03-23 11:11:11'),
(22, 1, 1, 'password', 'String', 1, NULL, '密碼(未加密)', 20160321163032.00, '2016-03-21 16:30:33', '2016-03-21 16:30:33'),
(23, 6, 1, 'siteId', 'int', 1, NULL, '網站Id', 20160321175030.00, '2016-03-21 17:50:31', '2016-03-21 17:50:31'),
(24, 6, 1, 'key', 'String', 0, NULL, '密鑰', 20160321175050.00, '2016-03-21 17:50:50', '2016-03-21 17:50:50'),
(25, 6, 1, 'langId', 'int', 1, NULL, '語言Id', 20160321175107.00, '2016-03-21 17:51:08', '2016-03-21 17:51:08'),
(26, 6, 1, 'deviceType', 'int', 1, NULL, ' 設備類型(Android:0;iOS:1)\r\n ', 20160322173645.00, '2016-03-21 17:51:31', '2016-03-22 17:36:46'),
(27, 6, 1, 'email', 'String', 1, NULL, '郵箱(用戶可輸入郵箱,或手機號碼進行登錄)\r\n<div>\r\n (郵箱或者手機號碼,根據@符號判斷。2個參數有一個為空)\r\n</div>', 20160321175342.00, '2016-03-21 17:53:43', '2016-03-21 17:53:43'),
(28, 6, 1, 'phone', 'String', 1, NULL, '<span style="white-space:normal;">手機號碼(用戶可輸入郵箱,或手機號碼進行登錄</span><span style="white-space:normal;">)</span>\r\n<div style="white-space:normal;">\r\n (郵箱或者手機號碼,根據@符號判斷。2個參數有一個為空)\r\n</div>', 20160321175403.00, '2016-03-21 17:54:04', '2016-03-21 17:54:04'),
(29, 6, 1, 'password', 'String', 1, NULL, '密碼(未加密)', 20160321175426.00, '2016-03-21 17:54:26', '2016-03-21 17:54:26'),
(30, 6, 1, 'pushRegisterId', 'String', 1, NULL, ' 推送消息註冊的Id\r\n ', 20160322173655.00, '2016-03-21 17:54:43', '2016-03-22 17:36:56'),
(31, 7, 1, 'siteId', 'int', 1, NULL, '<span style="color:#3E3A39;font-family:微軟正黑體, 微软雅黑, MingLiU, 新細明體, Arial, Verdana, \'Times New Roman\';font-size:14px;white-space:normal;">網站Id</span>', 20160322110319.00, '2016-03-22 11:03:19', '2016-03-22 11:03:19'),
(32, 7, 1, 'key', 'String', 0, NULL, '<span style="color:#3E3A39;font-family:微軟正黑體, 微软雅黑, MingLiU, 新細明體, Arial, Verdana, \'Times New Roman\';font-size:14px;white-space:normal;">密鑰</span>', 20160322110343.00, '2016-03-22 11:03:44', '2016-03-22 11:03:44'),
(33, 7, 1, 'langId', 'int', 1, NULL, '<span style="color:#3E3A39;font-family:微軟正黑體, 微软雅黑, MingLiU, 新細明體, Arial, Verdana, \'Times New Roman\';font-size:14px;white-space:normal;">語言Id</span>', 20160322110401.00, '2016-03-22 11:04:01', '2016-03-22 11:04:01'),
(34, 7, 1, 'memberId', 'int', 1, NULL, ' 會員Id\r\n ', 20160322173711.00, '2016-03-22 15:24:13', '2016-03-22 17:37:11'),
(35, 8, 1, 'siteId', 'int', 1, NULL, '網站Id', 20160322161505.00, '2016-03-22 16:15:06', '2016-03-22 16:15:06'),
(36, 8, 1, 'key', 'String', 1, NULL, '密鑰', 20160322161516.00, '2016-03-22 16:15:16', '2016-03-22 16:15:16'),
(37, 8, 1, 'langId', 'int', 1, NULL, '語言Id', 20160322161530.00, '2016-03-22 16:15:31', '2016-03-22 16:15:31'),
(38, 8, 1, 'memberId', 'int', 1, NULL, ' 會員Id\r\n ', 20160322173729.00, '2016-03-22 16:15:47', '2016-03-22 17:37:29'),
(39, 9, 1, 'siteId', 'int', 1, NULL, '網站Id', 20160322162420.00, '2016-03-22 16:24:21', '2016-03-22 16:24:21'),
(40, 9, 1, 'key', 'String', 1, NULL, '密鑰', 20160322162508.00, '2016-03-22 16:25:08', '2016-03-22 16:25:08'),
(41, 9, 1, 'langId', 'int', 1, NULL, '語言Id', 20160322162523.00, '2016-03-22 16:25:23', '2016-03-22 16:25:23'),
(42, 9, 1, 'memberId', 'int', 1, NULL, ' 會員Id\r\n ', 20160322173742.00, '2016-03-22 16:25:34', '2016-03-22 17:37:43'),
(43, 9, 1, 'memberName', 'String', 1, NULL, '會員姓名', 20160322162600.00, '2016-03-22 16:26:00', '2016-03-22 16:26:00'),
(44, 9, 1, 'memberPhone', 'String', 1, NULL, ' 會員電話\r\n ', 20160323141333.00, '2016-03-22 16:26:16', '2016-03-23 14:13:33'),
(45, 10, 1, 'siteId', 'int', 1, NULL, '網站Id', 20160322162835.00, '2016-03-22 16:28:36', '2016-03-22 16:28:36'),
(46, 10, 1, 'key', 'String', 0, NULL, '密鑰', 20160322162853.00, '2016-03-22 16:28:53', '2016-03-22 16:28:53'),
(47, 10, 1, 'langId', 'int', 1, NULL, '語言Id', 20160322162909.00, '2016-03-22 16:29:09', '2016-03-22 16:29:09'),
(48, 10, 1, 'memberId', 'int', 1, NULL, ' 會員Id\r\n ', 20160322173758.00, '2016-03-22 16:29:24', '2016-03-22 17:37:58'),
(49, 10, 1, 'f_27', 'String', 1, NULL, '<p style="white-space:normal;">\r\n 動態屬性\r\n</p>\r\n<p style="white-space:normal;">\r\n 測試時的參數是:輸入的單行文本內容\r\n</p>\r\n<p style="white-space:normal;">\r\n demo:\r\n</p>\r\n<p>\r\n <br />\r\n</p>\r\n<p>\r\n <img src="webkit-fake-url://c6a95655-a99a-4867-98e3-ef988c07f6e5/image.tiff" />\r\n</p>', 20160322163356.00, '2016-03-22 16:31:16', '2016-03-22 16:33:56'),
(50, 10, 1, 'f_28', 'String', 1, NULL, '<p>\r\n 動態屬性\r\n</p>\r\n<p>\r\n 測試時的參數是:輸入的多行文本內容\r\n</p>\r\n<p>\r\n demo:\r\n</p>\r\n<p>\r\n <img src="webkit-fake-url://2ba58170-e792-4274-af92-130a921f6b6c/image.tiff" />\r\n</p>\r\n<p>\r\n <br />\r\n</p>\r\n<div>\r\n <br />\r\n</div>', 20160322163224.00, '2016-03-22 16:32:24', '2016-03-22 16:32:24'),
(51, 11, 1, 'siteId', 'int', 1, NULL, '網站Id', 20160322164729.00, '2016-03-22 16:47:30', '2016-03-22 16:47:30'),
(52, 11, 1, 'key', 'String', 0, NULL, ' 密鑰\r\n ', 20160322164820.00, '2016-03-22 16:47:52', '2016-03-22 16:48:21'),
(53, 11, 1, 'langId', 'int', 1, NULL, '語言Id', 20160322164804.00, '2016-03-22 16:48:04', '2016-03-22 16:48:04'),
(54, 11, 1, 'memberId', 'int', 1, NULL, ' 會員Id\r\n ', 20160322173820.00, '2016-03-22 16:48:16', '2016-03-22 17:38:20'),
(55, 11, 1, 'oldPwd', 'String', 1, NULL, ' 原密碼,舊的密碼\r\n ', 20160322173827.00, '2016-03-22 16:48:55', '2016-03-22 17:38:28'),
(56, 11, 1, 'newPwd', 'String', 1, NULL, ' 新的密碼\r\n ', 20160322173835.00, '2016-03-22 16:50:45', '2016-03-22 17:38:36'),
(57, 12, 1, 'siteId', 'int', 1, NULL, '網站Id', 20160322171557.00, '2016-03-22 17:15:57', '2016-03-22 17:15:57'),
(58, 12, 1, 'key', 'String', 1, NULL, '密鑰', 20160322171607.00, '2016-03-22 17:16:08', '2016-03-22 17:16:08'),
(59, 12, 1, 'langId', 'int', 1, NULL, '語言Id', 20160322171619.00, '2016-03-22 17:16:20', '2016-03-22 17:16:20'),
(60, 12, 1, 'email', 'String', 1, NULL, '郵箱', 20160322171633.00, '2016-03-22 17:16:34', '2016-03-22 17:16:34'),
(61, 13, 1, 'siteId', 'int', 1, NULL, '網站Id', 20160322172748.00, '2016-03-22 17:27:48', '2016-03-22 17:27:48'),
(62, 13, 1, 'key', 'String', 1, NULL, '密鑰', 20160322172759.00, '2016-03-22 17:28:00', '2016-03-22 17:28:00'),
(63, 13, 1, 'langId', 'int', 1, NULL, '語言Id', 20160322172810.00, '2016-03-22 17:28:10', '2016-03-22 17:28:10'),
(64, 13, 1, 'email', 'String', 1, NULL, '郵箱', 20160322172824.00, '2016-03-22 17:28:24', '2016-03-22 17:28:24'),
(65, 14, 1, 'siteId', 'int', 1, NULL, '網站Id', 20160323141836.00, '2016-03-23 14:18:37', '2016-03-23 14:18:37'),
(66, 14, 1, 'key', 'String', 1, NULL, '密鑰', 20160323141847.00, '2016-03-23 14:18:48', '2016-03-23 14:18:48'),
(67, 14, 1, 'langID', 'int', 1, NULL, '語言Id', 20160323141859.00, '2016-03-23 14:18:59', '2016-03-23 14:18:59'),
(68, 14, 1, 'memberId', 'int', 0, NULL, '會員Id', 20160323141939.00, '2016-03-23 14:19:40', '2016-03-23 14:19:40'),
(69, 14, 1, 'parentId', 'int', 1, NULL, '父級Id(第一級:parentId=0)', 20160323142015.00, '2016-03-23 14:20:16', '2016-03-23 14:20:16'),
(70, 14, 1, 'deep', 'int', 1, NULL, '深度(從1開始)\r\n<div>\r\n deep=1代表獲取第一層數據\r\n</div>', 20160323142048.00, '2016-03-23 14:20:49', '2016-03-23 14:20:49'),
(71, 15, 1, 'siteId', 'int', 1, NULL, '網站Id', 20160323165636.00, '2016-03-23 16:56:37', '2016-03-23 16:56:37'),
(72, 15, 1, 'key', 'String', 1, NULL, '密鑰', 20160323165656.00, '2016-03-23 16:56:57', '2016-03-23 16:56:57'),
(73, 15, 1, 'langId', 'int', 1, NULL, '語言Id', 20160323165708.00, '2016-03-23 16:57:08', '2016-03-23 16:57:08'),
(74, 16, 1, 'siteId', 'int', 1, NULL, '網站Id', 20160323165940.00, '2016-03-23 16:59:41', '2016-03-23 16:59:41'),
(75, 16, 1, 'key', 'String', 1, NULL, '密鑰', 20160323165954.00, '2016-03-23 16:59:54', '2016-03-23 16:59:54'),
(76, 16, 1, 'langId', 'int', 1, NULL, '語言Id', 20160323170005.00, '2016-03-23 17:00:05', '2016-03-23 17:00:05'),
(77, 16, 1, 'memberId', 'int', 1, NULL, '會員Id', 20160323170016.00, '2016-03-23 17:00:17', '2016-03-23 17:00:17'),
(78, 17, 1, 'siteId', 'int', 1, NULL, '網站Id', 20160323170544.00, '2016-03-23 17:05:44', '2016-03-23 17:05:44'),
(79, 17, 1, 'key', 'String', 1, NULL, '密鑰', 20160323170553.00, '2016-03-23 17:05:54', '2016-03-23 17:05:54'),
(80, 17, 1, 'langId', 'int', 1, NULL, '語言Id', 20160323170605.00, '2016-03-23 17:06:05', '2016-03-23 17:06:05'),
(81, 17, 1, 'memberId', 'int', 1, NULL, '語言Id', 20160323170615.00, '2016-03-23 17:06:16', '2016-03-23 17:06:16'),
(82, 17, 1, 'addressid', 'int', 0, NULL, ' 地址Id\r\n<div>\r\n 新增:沒有這個參數\r\n</div>\r\n<div>\r\n 修改:比新增這個參數\r\n</div>\r\n ', 20160323170713.00, '2016-03-23 17:07:05', '2016-03-23 17:07:14'),
(83, 17, 1, 'address1', 'int', 0, '0', ' 4級聯動──第一級Id\r\n ', 20160323171525.00, '2016-03-23 17:07:55', '2016-03-23 17:15:25'),
(84, 17, 1, 'address2', 'int', 0, '0', ' <span style="white-space:normal;">4級聯動──第二級Id</span>\r\n ', 20160323171515.00, '2016-03-23 17:09:48', '2016-03-23 17:15:16'),
(85, 17, 1, 'address3', 'int', 0, '0', ' <span style="white-space:normal;">4級聯動──第三級Id</span>\r\n ', 20160323171533.00, '2016-03-23 17:10:19', '2016-03-23 17:15:33'),
(86, 17, 1, 'address4', 'int', 0, '0', ' <span style="white-space:normal;">4級聯動──第四級Id</span>\r\n ', 20160323171540.00, '2016-03-23 17:10:33', '2016-03-23 17:15:41'),
(87, 17, 1, 'addressdetail', 'String', 1, NULL, '地址詳情(具體)', 20160323171109.00, '2016-03-23 17:11:09', '2016-03-23 17:11:09'),
(88, 17, 1, 'receivename', 'String', 1, NULL, '收貨人姓名', 20160323171124.00, '2016-03-23 17:11:24', '2016-03-23 17:11:24'),
(89, 17, 1, 'receivephone', 'String', 1, NULL, '收貨人電話', 20160323171142.00, '2016-03-23 17:11:42', '2016-03-23 17:11:42'),
(90, 17, 1, 'isdefault', 'Bool', 1, 'false', '是否是默認收貨地址\r\n<div>\r\n true:是默認收貨地址(默認收貨地址只有一個)\r\n</div>\r\n<div>\r\n false:不是默認收貨地址\r\n</div>', 20160323171311.00, '2016-03-23 17:13:11', '2016-03-23 17:13:11'),
(91, 18, 1, 'siteId', 'int', 1, NULL, '網站Id', 20160323172513.00, '2016-03-23 17:25:14', '2016-03-23 17:25:14'),
(92, 18, 1, 'key', 'String', 0, NULL, ' 密鑰\r\n ', 20160323172613.00, '2016-03-23 17:25:37', '2016-03-23 17:26:14'),
(93, 18, 1, 'langId', 'int', 1, NULL, '語言Id', 20160323172547.00, '2016-03-23 17:25:48', '2016-03-23 17:25:48'),
(94, 18, 1, 'memberId', 'int', 1, NULL, '會員Id', 20160323172603.00, '2016-03-23 17:26:04', '2016-03-23 17:26:04'),
(95, 18, 1, 'addressid', 'int', 1, NULL, '收貨地址Id', 20160323172633.00, '2016-03-23 17:26:34', '2016-03-23 17:26:34'),
(96, 19, 1, 'siteId', 'int', 1, NULL, '網站Id', 20160323175111.00, '2016-03-23 17:51:11', '2016-03-23 17:51:11'),
(97, 19, 1, 'key', 'string', 0, NULL, '密鑰', 20160323175131.00, '2016-03-23 17:51:31', '2016-03-23 17:51:31'),
(98, 19, 1, 'langId', 'int', 1, NULL, '語言Id', 20160323175141.00, '2016-03-23 17:51:42', '2016-03-23 17:51:42'),
(99, 19, 1, 'memberId', 'int', 1, NULL, '會員Id', 20160323175155.00, '2016-03-23 17:51:56', '2016-03-23 17:51:56'),
(100, 19, 1, 'addressIds', 'int or List', 1, NULL, '地址Id\r\n<div>\r\n 當傳遞int類型,刪除一條數據\r\n</div>\r\n<div>\r\n 當傳遞List類型,刪除多條數據\r\n</div>', 20160323175256.00, '2016-03-23 17:52:06', '2016-03-23 17:52:56'),
(101, 20, 1, 'siteId', 'int', 1, NULL, '網站Id', 20160325114041.00, '2016-03-25 11:40:42', '2016-03-25 11:40:42'),
(102, 20, 1, 'key', 'String', 1, NULL, '密鑰', 20160325115811.00, '2016-03-25 11:58:12', '2016-03-25 11:58:12'),
(103, 20, 1, 'langId', 'int', 1, NULL, '語言Id', 20160325115834.00, '2016-03-25 11:58:34', '2016-03-25 11:58:34'),
(104, 20, 1, 'parentId', 'int', 1, NULL, '父級類別Id(第一級parentId=0)', 20160325115912.00, '2016-03-25 11:59:12', '2016-03-25 11:59:12'),
(105, 21, 1, 'siteId', 'int', 1, NULL, '網站Id', 20160325153635.00, '2016-03-25 15:36:36', '2016-03-25 15:36:36'),
(106, 21, 1, 'key', 'String', 0, NULL, ' 密鑰\r\n ', 20160325153724.00, '2016-03-25 15:36:51', '2016-03-25 15:37:24'),
(107, 21, 1, 'langId', 'int', 1, NULL, '語言Id', 20160325153702.00, '2016-03-25 15:37:02', '2016-03-25 15:37:02'),
(108, 21, 1, 'parentId', 'int', 1, NULL, '第一級類目Id', 20160325153718.00, '2016-03-25 15:37:19', '2016-03-25 15:37:19'),
(109, 22, 1, 'siteId', 'int', 1, NULL, '網站Id', 20160325175317.00, '2016-03-25 17:53:18', '2016-03-25 17:53:18'),
(110, 22, 1, 'key', 'String', 0, NULL, ' 密鑰\r\n ', 20160325175355.00, '2016-03-25 17:53:34', '2016-03-25 17:53:56'),
(111, 22, 1, 'langId', 'int', 1, NULL, '語言Id', 20160325175352.00, '2016-03-25 17:53:52', '2016-03-25 17:53:52'),
(112, 22, 1, 'currencyId', 'int', 1, NULL, '貨幣Id', 20160325175416.00, '2016-03-25 17:54:17', '2016-03-25 17:54:17'),
(113, 22, 1, 'classId', 'int', 1, NULL, '類別Id\r\n<div>\r\n <span style="white-space:normal;">搜尋產品時:classId=0</span><br />\r\n</div>', 20160325184527.00, '2016-03-25 17:54:31', '2016-03-25 18:45:27'),
(114, 22, 1, 'productName', 'String', 1, NULL, ' 搜尋的字段\r\n<div>\r\n 使用情況如下\r\n</div>\r\n<div>\r\n 1:根據商品類別Id(classId)獲取商品列表時,此字段為空值“”\r\n</div>\r\n<div>\r\n 2:搜尋產品時,productName=“搜尋的內容”,classId=0\r\n</div>\r\n ', 20160325184521.00, '2016-03-25 17:56:31', '2016-03-25 18:45:21'),
(115, 23, 1, 'siteId', 'int', 1, NULL, '網站Id', 20160325180110.00, '2016-03-25 18:01:11', '2016-03-25 18:01:11'),
(116, 23, 1, 'key', 'String', 1, NULL, '密鑰', 20160325180121.00, '2016-03-25 18:01:22', '2016-03-25 18:01:22'),
(117, 23, 1, 'langId', 'int', 1, NULL, '語言Id', 20160325180132.00, '2016-03-25 18:01:32', '2016-03-25 18:01:32'),
(118, 23, 1, 'currencyId', 'int', 1, NULL, '貨幣Id', 20160325180148.00, '2016-03-25 18:01:49', '2016-03-25 18:01:49'),
(119, 23, 1, 'classId', 'int', 1, NULL, '<span style="white-space:normal;">類別Id</span>\r\n<div style="white-space:normal;">\r\n 搜查產品是,productName=“搜尋的內容”,classId=0\r\n</div>', 20160325180421.00, '2016-03-25 18:01:59', '2016-03-25 18:04:21'),
(120, 23, 1, 'productName', 'String', 1, NULL, '<span style="white-space:normal;">搜尋的字段</span>\r\n<div style="white-space:normal;">\r\n 使用情況如下\r\n</div>\r\n<div style="white-space:normal;">\r\n 1:根據商品類別Id(classId)獲取商品列表時,此字段為空值“”\r\n</div>\r\n<div style="white-space:normal;">\r\n 2:搜查產品是,productName=“搜尋的內容”,classId=0\r\n</div>', 20160325180405.00, '2016-03-25 18:02:15', '2016-03-25 18:04:05'),
(121, 23, 1, 'pageIndex', 'int', 1, NULL, '分頁參數:獲取第幾頁數據', 20160325180239.00, '2016-03-25 18:02:40', '2016-03-25 18:02:40'),
(122, 23, 1, 'pageSize', 'int', 1, NULL, '分頁:一頁幾條數據', 20160325180350.00, '2016-03-25 18:03:51', '2016-03-25 18:03:51'),
(123, 24, 1, 'siteId', 'int', 1, NULL, '網站Id', 20160325181243.00, '2016-03-25 18:12:44', '2016-03-25 18:12:44'),
(124, 24, 1, 'key', 'String', 1, NULL, '密鑰', 20160325181257.00, '2016-03-25 18:12:57', '2016-03-25 18:12:57'),
(125, 24, 1, 'langId', 'int', 1, NULL, '語言Id', 20160325181307.00, '2016-03-25 18:13:07', '2016-03-25 18:13:07'),
(126, 24, 1, 'currencyId', 'int', 1, NULL, '貨幣Id', 20160325181319.00, '2016-03-25 18:13:20', '2016-03-25 18:13:20'),
(127, 24, 1, 'productId', 'int', 1, NULL, '商品Id', 20160325181333.00, '2016-03-25 18:13:33', '2016-03-25 18:13:33'),
(128, 25, 1, 'siteId', 'int', 1, NULL, '網站Id', 20160328095359.00, '2016-03-28 09:54:00', '2016-03-28 09:54:00'),
(129, 25, 1, 'key', 'String', 1, NULL, '密鑰', 20160328095418.00, '2016-03-28 09:54:19', '2016-03-28 09:54:19'),
(130, 25, 1, 'langId', 'int', 1, NULL, '語言Id', 20160328095440.00, '2016-03-28 09:54:41', '2016-03-28 09:54:41'),
(131, 25, 1, 'currencyId', 'int', 1, NULL, '貨幣類型Id \r\n ', 20160328095815.00, '2016-03-28 09:58:15', '2016-03-28 09:58:15'),
(132, 25, 1, 'posProductId', 'int', 1, NULL, 'POS中的商品Id', 20160328095844.00, '2016-03-28 09:58:44', '2016-03-28 09:58:44'),
(133, 26, 1, 'siteId', 'int', 1, NULL, '網站Id', 20160328103952.00, '2016-03-28 10:39:53', '2016-03-28 10:39:53'),
(134, 26, 1, 'key', 'String', 1, NULL, '密鑰', 20160328104005.00, '2016-03-28 10:40:05', '2016-03-28 10:40:05'),
(135, 26, 1, 'langId', 'int', 1, NULL, '語言Id', 20160328104017.00, '2016-03-28 10:40:17', '2016-03-28 10:40:17'),
(136, 26, 1, 'currencyId', 'int', 1, NULL, '貨幣Id', 20160328104032.00, '2016-03-28 10:40:32', '2016-03-28 10:40:32'),
(137, 26, 1, 'classId', 'int', 0, NULL, ' 類別Id\r\n ', 20160329104344.00, '2016-03-28 10:40:53', '2016-03-29 10:43:45'),
(138, 26, 1, 'pageIndex', 'int', 0, NULL, ' 頁數\r\n ', 20160328104156.00, '2016-03-28 10:41:06', '2016-03-28 10:41:56'),
(139, 26, 1, 'PageSize', 'int', 0, NULL, '一頁的數據數量', 20160328104151.00, '2016-03-28 10:41:39', '2016-03-28 10:41:52'),
(140, 28, 1, 'siteId', 'int', 1, NULL, ' \r\n ', 20160329104028.00, '2016-03-29 10:40:28', '2016-03-29 10:40:28'),
(141, 28, 1, 'key', 'string', 1, NULL, ' \r\n ', 20160329104122.00, '2016-03-29 10:41:22', '2016-03-29 10:41:22'),
(142, 28, 1, 'langId', 'int', 1, NULL, ' \r\n ', 20160329104131.00, '2016-03-29 10:41:32', '2016-03-29 10:41:32'),
(143, 28, 1, 'currencyId', 'int', 1, NULL, '汇率Id ', 20160329104152.00, '2016-03-29 10:41:53', '2016-03-29 10:41:53'),
(144, 28, 1, 'classId', 'int', 1, NULL, '商品类别查询时使用', 20160329104226.00, '2016-03-29 10:42:26', '2016-03-29 10:42:26'),
(145, 28, 1, 'productName', 'string', 1, NULL, '商品名称查询时使用', 20160329104249.00, '2016-03-29 10:42:50', '2016-03-29 10:42:50'),
(146, 26, 1, 'productName', 'string', 0, NULL, ' 商品名称查询时使用\r\n ', 20160329104338.00, '2016-03-29 10:43:17', '2016-03-29 10:43:38'),
(147, 26, 1, 'cmId', 'int', 1, NULL, '用于区分首页的推荐模块', 20160329104447.00, '2016-03-29 10:44:48', '2016-03-29 10:44:48'),
(148, 28, 1, 'cmId', 'int', 1, NULL, '用于区分首页的推荐模块', 20160329104505.00, '2016-03-29 10:45:06', '2016-03-29 10:45:06'),
(149, 27, 1, 'siteId', 'int', 1, NULL, ' \r\n ', 20160329104558.00, '2016-03-29 10:45:58', '2016-03-29 10:45:58'),
(150, 27, 1, 'key', 'string', 1, NULL, ' \r\n ', 20160329104605.00, '2016-03-29 10:46:05', '2016-03-29 10:46:05'),
(151, 27, 1, 'langId', 'int', 1, NULL, ' \r\n ', 20160329104614.00, '2016-03-29 10:46:15', '2016-03-29 10:46:15'),
(152, 27, 1, 'currencyId', 'int', 1, NULL, ' \r\n ', 20160329104623.00, '2016-03-29 10:46:24', '2016-03-29 10:46:24'),
(153, 27, 1, 'count', 'int', 1, NULL, '表示每个推荐模块在首页显示商品的数量', 20160329104659.00, '2016-03-29 10:46:59', '2016-03-29 10:46:59'),
(156, 30, 1, 'currencyId', 'int', 1, '0', ' 貨幣類型id \r\n ', 20160329163353.00, '2016-03-29 16:33:54', '2016-03-29 16:33:54'),
(157, 30, 1, 'posProductId', 'int', 1, '0', '產品pos id \r\n ', 20160329163439.00, '2016-03-29 16:34:40', '2016-03-29 16:34:40'),
(158, 29, 1, 'siteId', 'int', 1, NULL, '網站Id', 20160330114148.00, '2016-03-30 11:41:49', '2016-03-30 11:41:49'),
(159, 29, 1, 'key', 'String', 1, NULL, '密鑰', 20160330114159.00, '2016-03-30 11:42:00', '2016-03-30 11:42:00'),
(160, 29, 1, 'langId', 'int', 1, NULL, '語言Id', 20160330114210.00, '2016-03-30 11:42:10', '2016-03-30 11:42:10'),
(161, 29, 1, 'currencyId', 'int', 1, NULL, '貨幣Id', 20160330114220.00, '2016-03-30 11:42:21', '2016-03-30 11:42:21'),
(162, 29, 1, 'posProductId', 'int', 1, NULL, 'POS商品Id', 20160330114235.00, '2016-03-30 11:42:35', '2016-03-30 11:42:35'),
(163, 31, 1, 'siteId', 'int', 1, NULL, '網站Id', 20160330125046.00, '2016-03-30 12:50:46', '2016-03-30 12:50:46'),
(164, 31, 1, 'key', 'String', 1, NULL, '密鑰', 20160330125057.00, '2016-03-30 12:50:58', '2016-03-30 12:50:58'),
(165, 31, 1, 'langId', 'int', 1, NULL, '語言Id', 20160330125111.00, '2016-03-30 12:51:11', '2016-03-30 12:51:11'),
(166, 31, 1, 'memberId', 'int', 1, NULL, '會員Id', 20160330125138.00, '2016-03-30 12:51:39', '2016-03-30 12:51:39'),
(167, 31, 1, 'POSChildProductId', 'int', 1, NULL, '產品子Id', 20160330125206.00, '2016-03-30 12:52:07', '2016-03-30 12:52:07'),
(168, 31, 1, 'eshopProductID', 'int', 1, NULL, '產品Id', 20160330125219.00, '2016-03-30 12:52:19', '2016-03-30 12:52:19'),
(169, 31, 1, 'quantity', 'int', 1, NULL, '新增的商品數量', 20160330125231.00, '2016-03-30 12:52:32', '2016-03-30 12:52:32'),
(174, 32, 1, 'siteId', 'int', 1, NULL, '網站Id \r\n ', 20160330173010.00, '2016-03-30 17:30:11', '2016-03-30 17:30:11'),
(175, 32, 1, 'key', 'String', 1, NULL, ' \r\n 密鑰 ', 20160330173050.00, '2016-03-30 17:30:50', '2016-03-30 17:30:50'),
(176, 32, 1, 'langId', 'int', 1, NULL, ' 語言Id \r\n ', 20160330173140.00, '2016-03-30 17:31:40', '2016-03-30 17:31:40'),
(177, 32, 1, 'currencyId', 'int', 1, NULL, '<span style="color:#3E3A39;font-family:微軟正黑體, 微软雅黑, MingLiU, 新細明體, Arial, Verdana, \'Times New Roman\';font-size:14px;white-space:normal;background-color:#FAFAFA;">貨幣類型id</span>', 20160330173524.00, '2016-03-30 17:35:25', '2016-03-30 17:35:25'),
(178, 32, 1, 'memberId', 'int', 1, NULL, ' 會員id \r\n ', 20160330181346.00, '2016-03-30 18:13:47', '2016-03-30 18:13:47'),
(179, 32, 1, 'pageIndex', 'int', 1, NULL, ' 當前頁 \r\n ', 20160330181412.00, '2016-03-30 18:14:12', '2016-03-30 18:14:12'),
(180, 32, 1, 'pageSize', 'int', 1, NULL, '數據大小', 20160330181628.00, '2016-03-30 18:14:41', '2016-03-30 18:16:28'),
(181, 33, 1, 'siteId', 'int', 1, NULL, '<span style="color:#3E3A39;font-family:微軟正黑體, 微软雅黑, MingLiU, 新細明體, Arial, Verdana, \'Times New Roman\';font-size:14px;white-space:normal;background-color:#FAFAFA;">網站Id</span>', 20160330182307.00, '2016-03-30 18:23:08', '2016-03-30 18:23:08'),
(182, 33, 1, 'key', 'string', 1, NULL, '<span style="color:#3E3A39;font-family:微軟正黑體, 微软雅黑, MingLiU, 新細明體, Arial, Verdana, \'Times New Roman\';font-size:14px;white-space:normal;background-color:#FAFAFA;">密鑰</span>', 20160330182333.00, '2016-03-30 18:23:34', '2016-03-30 18:23:34'),
(183, 33, 1, 'langId', 'int', 1, NULL, ' 語言Id \r\n ', 20160330182350.00, '2016-03-30 18:23:51', '2016-03-30 18:23:51'),
(184, 33, 1, 'memberId', 'int', 1, NULL, '<span style="color:#3E3A39;font-family:微軟正黑體, 微软雅黑, MingLiU, 新細明體, Arial, Verdana, \'Times New Roman\';font-size:14px;white-space:normal;background-color:#FAFAFA;">會員id</span>', 20160330182446.00, '2016-03-30 18:24:47', '2016-03-30 18:24:47'),
(185, 33, 1, 'POSChildProductId', 'int', 1, NULL, '子產品id \r\n ', 20160330182534.00, '2016-03-30 18:25:34', '2016-03-30 18:25:34'),
(186, 33, 1, 'EshopProductId', 'int', 1, NULL, ' 產品id \r\n ', 20160330182622.00, '2016-03-30 18:26:22', '2016-03-30 18:26:22'),
(187, 33, 1, 'quantity', 'int', 1, NULL, '產品數量 \r\n ', 20160330182655.00, '2016-03-30 18:26:55', '2016-03-30 18:26:55'),
(188, 34, 1, 'siteId', 'int', 1, NULL, '<span style="color:#3E3A39;font-family:微軟正黑體, 微软雅黑, MingLiU, 新細明體, Arial, Verdana, \'Times New Roman\';font-size:14px;white-space:normal;background-color:#FAFAFA;">網站Id</span>', 20160330182753.00, '2016-03-30 18:27:54', '2016-03-30 18:27:54'),
(189, 34, 1, 'key', 'String', 1, NULL, ' 密鑰 \r\n ', 20160330182823.00, '2016-03-30 18:28:24', '2016-03-30 18:28:24'),
(190, 34, 1, 'langId', 'int', 1, NULL, '語言Id\r\n ', 20160330182845.00, '2016-03-30 18:28:46', '2016-03-30 18:28:46'),
(191, 34, 1, 'memberId', 'int', 1, NULL, ' \r\n 會員id ', 20160330182907.00, '2016-03-30 18:29:07', '2016-03-30 18:29:07'),
(192, 34, 1, 'POSChildProductIds', 'int', 1, NULL, '子產品id ', 20160330183023.00, '2016-03-30 18:30:24', '2016-03-30 18:30:24'),
(193, 35, 1, 'siteId', 'int', 1, NULL, '<span style="color:#3E3A39;font-family:微軟正黑體, 微软雅黑, MingLiU, 新細明體, Arial, Verdana, \'Times New Roman\';font-size:14px;white-space:normal;background-color:#FAFAFA;">網站Id</span><br />', 20160401124044.00, '2016-04-01 12:40:45', '2016-04-01 12:40:45'),
(194, 35, 1, 'key', 'String', 1, NULL, ' <span style="color:#3E3A39;font-family:微軟正黑體, 微软雅黑, MingLiU, 新細明體, Arial, Verdana, \'Times New Roman\';font-size:14px;white-space:normal;background-color:#FAFAFA;">密鑰</span>\r\n ', 20160401124205.00, '2016-04-01 12:41:00', '2016-04-01 12:42:05'),
(195, 35, 1, 'langId', 'int', 1, NULL, '<span style="color:#3E3A39;font-family:微軟正黑體, 微软雅黑, MingLiU, 新細明體, Arial, Verdana, \'Times New Roman\';font-size:14px;white-space:normal;background-color:#FAFAFA;">語言Id</span>', 20160401124132.00, '2016-04-01 12:41:32', '2016-04-01 12:41:32'),
(196, 35, 1, 'memberId', 'int', 1, NULL, '<span style="color:#3E3A39;font-family:微軟正黑體, 微软雅黑, MingLiU, 新細明體, Arial, Verdana, \'Times New Roman\';font-size:14px;white-space:normal;background-color:#FAFAFA;">會員Id</span>', 20160401124151.00, '2016-04-01 12:41:51', '2016-04-01 12:41:51'),
(197, 35, 1, 'cartListStr', 'string', 1, NULL, '要結算的商品\r\n<p>\r\n <p>\r\n [<span style="color:#D12F1B;font-family:Menlo;font-size:11px;">{"poschildProductIds":1001,"quantity":10}</span>]\r\n </p>\r\n <p>\r\n <br />\r\n </p>\r\n <div>\r\n <br />\r\n </div>\r\n</p>', 20160401124426.00, '2016-04-01 12:44:27', '2016-04-01 12:44:27');
/*!40000 ALTER TABLE `methodparameter` ENABLE KEYS */;
-- 导出 表 apidb.project 结构
CREATE TABLE IF NOT EXISTS `project` (
`Id` int(11) NOT NULL AUTO_INCREMENT,
`Name` varchar(50) DEFAULT NULL,
`Sort` decimal(18,2) NOT NULL,
`CreateDate` datetime DEFAULT NULL,
`UpdateDate` datetime NOT NULL,
PRIMARY KEY (`Id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
-- 正在导出表 apidb.project 的数据:~1 rows (大约)
/*!40000 ALTER TABLE `project` DISABLE KEYS */;
INSERT INTO `project` (`Id`, `Name`, `Sort`, `CreateDate`, `UpdateDate`) VALUES
(1, 'Eshop接口', 20160318094102.00, '2016-03-17 18:45:07', '2016-03-18 09:41:03'),
(4, 'App Push接口', 20160407213446.00, '2016-04-07 21:34:47', '2016-04-07 21:34:47');
/*!40000 ALTER TABLE `project` ENABLE KEYS */;
-- 导出 表 apidb.__migrationhistory 结构
CREATE TABLE IF NOT EXISTS `__migrationhistory` (
`MigrationId` varchar(150) NOT NULL,
`ContextKey` varchar(300) NOT NULL,
`Model` longblob NOT NULL,
`ProductVersion` varchar(32) NOT NULL,
PRIMARY KEY (`MigrationId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- 正在导出表 apidb.__migrationhistory 的数据:~1 rows (大约)
/*!40000 ALTER TABLE `__migrationhistory` DISABLE KEYS */;
INSERT INTO `__migrationhistory` (`MigrationId`, `ContextKey`, `Model`, `ProductVersion`) VALUES
('201603171030121_InitialCreate', 'Api.Model.Migrations.Configuration', _binary 0x1F3F00000000000400ED5CDB723F107DEF4CFF81C3E744B49D7127F5483F929D7AEA5B2D3B3FB992D9920043801EEBDBFAD04F3F743F781549898ED3683CF6484BE060B1D83D003FFEF73F3F9F5D477B029FDB8C4EF4C3D1813F359965D3D5440FC4F2ED7BFDE3879F7F1A9F59EEB33F69F74EB6C39E944FF447213FC3E03FB8848F5CDBF419674B3132996B103F4707073F87870620848E583F3FA8B05D08BFE03F3F7822203FB3C0E1B11C9FCC4354ED9AB8C03D62C2443FF5EC51D84AD74E1D9BA002737096BA4628653F54EFE481C35CF88CAEE61E0A8873BFF6003F89C321563F6BDE760607477206463F3F032E98DB11F0F05D6C12A3D8BD9761F5D464683F34AE58CB5987869BE8532260C5FCB5AE15073B3FBE6CA8D87594B47EA3A53FE9D2A387C89F373F7044E0C38442207C3F6E8385639BBFC3FA9EFD05744203C751B542BDF0594E80A25B9F79E08B3F2C635D2F2C5D33F2FD8C62C7B49BD2279AC50515EF8E743F07270B07D24557663C17CC87CF40C1C7795AB74408F0A9C480D06CA5D10B63E1D73F3F9B876C86B9033FEB6D516E898F5A6F3FFF2608183818FABA76453F81AE3F92C20106FBB93F562289511FA88D4C819D3F6C1C64CE7C3F3203D3760946F0AD8F9F62EA79AF6B739348A5BBCF603F2E3F7F3FF0F3BDED6EECF9E0593F1B3F1B593F06DF993F7F8A766A177D69F37D3F187ED17A34B8FC2E3C3E705D2249B77698E39D443FB8E9DB5EB477D48E3FF7513F8AAF403C32AB5D08476DF7F13B64FCC6679481B7BEE35DC4E783EF34EFAE3F1BCFC33F473F7C3FFD86273F20E2913F1EFBBD14745E3F7E0D3F5B3F877D623F427B40C9B8BFB45D5B6C0B75075F03E0E2129EA069097762D3762C3F6F3F8EFC330397ED778C61770C3CA1E337E4C82E5B47DA69BF87543F19695BEA8F784AA1AFD4EA3FEC455EA2D047494EEFA1A2F6824BEEB37DB0B6E5D0192C09FAE9173FC3ABFDA224FAC3325B7C866BC768713F93F5208D9D1C2C7E1C370DDCD23F91E5053F773F3F6E3F4B3F5C17573FDF593FABAE3F3F3FF0633F032E5A483FFDA064CB5CD35BC6B3B6876563456669305561E3EB633F3F313F01C8BB966A33141B3FAA40D3D647ED8C26BD6ECAA820364D91663F033D70886DC4E318CDEB1241CD41E4DF666D3FB7CCB9E3634976796F34A3A4378755283F3F98C8F1AB3092573F003FD46328A7E24D60D1F65105956E4355EC90AE53964B32A264529274326AB24E3FE279E8774A162A96683F05357D3BEF9EA471230CC3E415B99A54DB7424DC573F0A4FA37BCB73DBE7423F174486E7D4724BCDD02B6BCC9A0C5072BCE2669A993B3F3F47DDCAB9A262F7CC683F0F1777C3704A90EA3FA54A5DC3BC1F71885F3F4F3FB8B46E776FEAAD3F3F8AB83D5696BD513F6907ADD20C4E4EA9543F293A4B3F91A43D427452501122497B043FA0E2A8F2F6683F414553E565B4B151F0BCA2671B253F3F8BC13F3FF6ED174A1943778FA586BE3F98A25D293F15FB5413429A69C9F96E226C8F937B7D54B1720F3F3F01959C43FA45537C563F4A751DBF8338527222395F513FB99D84798F9C9B494197A8CEA534F2B19D7B3F53CD5CA880AABC3D5A2E6B917302F541173C257591C7531E7439A6A8F98BFC51457DF2ED18524D44E4F5CBE47BBE7D11BE555EDBB6A1DCECD53F3F200C43C2593E41C5C8A4ED91A20B14152592BC24ED6639825C7CA6D22E743F01F26C94C9BB50879A08C87387FA647F5C3F3FB9A8E9471EC9654E77D2A83F0C59EC5F3F3719D0CD4AB7783FE9E8E96D5EE1D66E1CDFA06D2E282F5DA9454D648E843DD996BC4EBB5ACFBF3A23F97C147E3F364E386B7145A8BDC4E3547481AD1F8F7E2914A7BF9E42718373CB69592DFEE209375B1A75634AAD6B8D74B1E22C1C65CB723F18C5623F1811D744FDE913F1CD47E2973F32D0AE09426B3F3F1511A6F93F3A2B5D4E1F6EC6DD4D153F2A2AABA86BBCB13FE68B3F518FBBFB7845618880673F3F42A5EA063F8F9352B5F2203FDCDD35B2D2E4BADDA44704575422EF48DF72E1711F4356141B2F18737651693FA7AACC784706ABE0BD9D2D74B988784FA983526ACDC5D877CBAD3F3FB1AC56C3BE3F75B14AD761083F34CA45B8BDE8A53FB7AF4A43F2C93F3AD4DE3F18608023CDDE8BEABCA858BA583FABB93F3F353F4697673F423F224DCDCE158CCD058C5563807C6CB6AF6F6C286FAC8277DB953E96AA1B373FD68FE6752D926CAA913FC6DBB280B27C3F363F3FC6DDC25E65103F7C501C107D39034DDA5C3F4B3F67A66A3F291F1F083F39F5853FA6C03F701E16D1C785BD673F3F7A13082F10A79C83BB70726E38369AC70FAB443F8F6FC2ED8FEF620AA8A62D23FD867E0A6CC74A3FAF883F0819123123A356732199793F425F333F28363F3CA092CFEFC1F51C043F744E9EA08F6E0F1C2E6145CC7572515E0FB27921F2661FCF6CB2C2F8E031463FBFA20F5BEEF33F001BB456C0E0460000, '6.1.3-40302');
/*!40000 ALTER TABLE `__migrationhistory` ENABLE KEYS */;
/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
/*!40014 SET FOREIGN_KEY_CHECKS=IF(@OLD_FOREIGN_KEY_CHECKS IS NULL, 1, @OLD_FOREIGN_KEY_CHECKS) */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。